Re: [PHP] mySQL table output...

2004-05-25 Thread Don Read
On 23-May-2004 Russell P Jones wrote: > I just want to print out a table from mySQL. Thats it. into an html > table. > > Column 1 | Col 2 | Col 3 > - > Val 1| val 2 | val 3 > Val 4| val 5 | val 6 > > > any ideas on how to do this? > if ($res = mysql_query($q

Re: [PHP] mySQL table output...

2004-05-23 Thread Rachel Rodriguez
My apologies, I accidentally clicked some key combination in Yahoo that sent off my message before I finished. Here we go again: while ($row = mysql_fetch_array($sql_result)) { $col_1 = $row['column1']; $col_2 = $row['column2']; $col_3 = $row['column3']; $val_1 = $row['value1'];

Re: [PHP] mySQL table output...

2004-05-23 Thread Rachel Rodriguez
--- Russell P Jones <[EMAIL PROTECTED]> wrote: > I just want to print out a table from mySQL. Thats > it. into an html table. > > Column 1 | Col 2 | Col 3 > - > Val 1| val 2 | val 3 > Val 4| val 5 | val 6 > > > any ideas on how to do this? Sure, this is a fai

[PHP] mySQL table output...

2004-05-23 Thread Russell P Jones
I just want to print out a table from mySQL. Thats it. into an html table. Column 1 | Col 2 | Col 3 - Val 1| val 2 | val 3 Val 4| val 5 | val 6 any ideas on how to do this? Russ Jones -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h