MySQL Forums
Forum List  »  PHP

Re: SELECT multiple columns
Posted by: Peter Brawley
Date: October 03, 2007 03:52PM

You need something like...
while( $row = mysql_fetch_row($cheese)) {
  echo "<b>", $row[0], " ", $row[1], " ", $row[2], " ", $row[3], '</b>', "<br/>";
}
PB

Options: ReplyQuote


Subject
Written By
Posted
October 03, 2007 11:07AM
Re: SELECT multiple columns
October 03, 2007 03:52PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.