Re: [PHP] creating a development log

2003-08-30 Thread Merlin
Thanx Chris, this works. Here is the code (might help somebody else) unset($previousDate); for ($i=0; $i < $num_results; $i++){ if($previousDate != $log['date'][$i]) echo ''.$log[date][$i].''.$p.''; echo ''.$log[entry][$i].''; $previousDate = $log['date'][$i];

Re: [PHP] creating a development log

2003-08-30 Thread Merlin
Thanx Chris, this works. Here is the code (might help somebody else) unset($previousDate); for ($i=0; $i < $num_results; $i++){ if($previousDate != $log['date'][$i]) echo ''.$log[date][$i].''.$p.''; echo ''.$log[entry][$i].''; $previousDate = $log['date'][$i];

Re: [PHP] creating a development log

2003-08-30 Thread Merlin
Thanx Chris, this works. Here is the code (might help somebody else) unset($previousDate); for ($i=0; $i < $num_results; $i++){ if($previousDate != $log['date'][$i]) echo ''.$log[date][$i].''.$p.''; echo ''.$log[entry][$i].''; $previousDate = $log['date'][$i];

RE: [PHP] creating a development log

2003-08-29 Thread Chris W. Parker
Merlin on Friday, August 29, 2003 3:03 PM said: > Unfortuantelley this looks way more complicated than I thought. How to > group by date and still get the entry, and how can I arange it, that > it outputs only the one for the date and then closes the list`? To displ

[PHP] creating a development log

2003-08-29 Thread Merlin
Hi there, I would like to create a small dev log. Output should be somehow like this: Aug 30, 2003 1. Member galleries added sort option rating Aug 31, 2003 1. Travel log entries can be dated now. 2. Member galleries added 5 star rating system NOw I have created a table with 2 rows