[PHP-DB] Masking a reacuring result

2001-08-19 Thread Ron Gallant
I am querying a list with a date field. I want to order the list by the date field and only show each days date once with the other fields showing. (row 1) 2001-08-19 - some text here. (row 2)more text under same date. My date does not show. (row 3) 2001-08-20 - Lots

[PHP-DB] Re: Masking a reacuring result

2001-08-19 Thread Ron Gallant
I just wanted to say that this is one of the most informative un-judging groups I have used. And thanks for everything Hugh. Ron Gallant [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I am querying a list with a date field. I want to order

[PHP-DB] Table results returning 2 sets of the same row

2001-08-18 Thread Ron Gallant
I used the code from this page http://php.net/manual/en/ref.mysql.php And my table results are shown 2 times per row. http://www.chizeledlight.com/test.php I also don't know how to specify the column I want the result from. Like $columnName. -- PHP Database Mailing List

[PHP-DB] Re: Table results returning 2 sets of the same row

2001-08-18 Thread Ron Gallant
I get Warning: Wrong parameter count for explode() in /www/chizeledlight/test.php on line 39 when I use this code. The line in error is explode($row); Hugh Bothwell [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Ron Gallant [EMAIL PROTECTE

[PHP-DB] Re: Table results returning 2 sets of the same row

2001-08-18 Thread Ron Gallant
OK, I got it... I used $date = $row[date]; $news = $row[news]; to define the rows. Thats great. I am a Cold Fusion user by trade and am diving head first into PHP. I like it a bunch. Ron Gallant [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]..