> print_r?  Am I about to learn something new?  Be still, my beating heart!

print_r will print the array $row which is one of the rows returned by
running your query. You can then see all the values in the array.

Just run it, you will see what it does.

Or alternatively echo just one field from the returned row (array):

echo "$row[0]<br>";
echo "$row[id]<br>";


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to