$result = mysql_query("SELECT name, description FROM table"); while ($row = mysql_fetch_assoc($result)) { echo "{$row['name']}<br />$row['description']"; }
On 14 Dec 2004, at 16:52, Steve Marquez wrote:
Greetings. I am trying to display looped information from a MySQL database
in a PHP file.
Loop
$name (witht a br />) then $description
End of loop
I would like to loop the multiple variables rather than put all the
variables into a single variable with an array. I can not figure out how to
do this.
I have very little knowledge of PHP but am learning. Let me know if more
information is needed.
Thank you for any help.
-- Steve Marquez [EMAIL PROTECTED]
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

