View Single Post
10-03-2012, 02:49 AM
#3
Dan is offline Dan
Dan's Avatar
Status: Request a custom title
Join date: Feb 2005
Location:
Expertise:
Software:
 
Posts: 3,164
iTrader: 15 / 86%
 

Dan is an unknown quantity at this point

  Old

That will only change the name. I'm wanting to re-populate the array so each day has it's own nesting, with the rows for that day included.

Code:
			$key = explode(' ', $row['date']);
			$aData[$key[0]][] = array($row['date'], $row['id'], $row['name']);
Almost there. :P

Reply With Quote