[wdvltalk] Re: MySQL / PHP SELECT problems [was: Hello Again! ]

2003-07-17 Thread Gerenday, Perry (P.)
John Nichel wrote: Here's where you would use mysql_fetch_row() (allthough I prefer mysql_fetch_array()) while ( $datareturned = mysql_fetch_row ( $ShowMeAll ) ) { echo Here it is: . $datareturned . br\n; } Thanks John. I found this myself, just yesterday, and have started

[wdvltalk] Re: MySQL / PHP SELECT problems [was: Hello Again!]

2003-07-15 Thread Matthew Macdonald-Wallace
On Mon, 2003-07-14 at 20:17, Gerenday, Perry (P.) wrote: Matthew Macdonald-Wallacemailto:[EMAIL PROTECTED] on Monday, July 14, 2003 8:01 AM, said: Hope this list is still the hive of activity it used to be, look forward to helping and being helped once again. Alrighty then Matt. Let's

[wdvltalk] Re: MySQL / PHP SELECT problems [was: Hello Again!]

2003-07-14 Thread Bj
- Original Message - From: Gerenday, Perry (P.) [EMAIL PROTECTED] Why can't I print (to screen) what I think is in my MySQL database using PHP. Here is what I've got. $ShowMeAll = mysql_query(SELECT * FROM blogTable) or die(Bad SELECT query. . mysql_error());