--- 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 fairly common thing to do. Use a while loop. while ($row = mysql_fetch_array($result)) { > > Russ Jones > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > ===== ~Rachel __________________________________ Do you Yahoo!? Yahoo! Domains – Claim yours for only $14.70/year http://smallbusiness.promotions.yahoo.com/offer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php