RE: [PHP-DB] New to PHP Need Help

2002-04-04 Thread Rick Emery
il 04, 2002 10:18 AM To: Jason Tobias Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] New to PHP Need Help JT> $Location_Info = mysql_fetch_row($result); JT> echo "$Location_Info"; After you fetch the row, you have to extract the elements from the array that makes up the row. For more

Re: [PHP-DB] New to PHP Need Help

2002-04-04 Thread Julie Meloni
JT> $Location_Info = mysql_fetch_row($result); JT> echo "$Location_Info"; After you fetch the row, you have to extract the elements from the array that makes up the row. For more than one row in your result, you have to call mysql_fetch_row() again. >From http://www.php.net/manual/en/function

[PHP-DB] New to PHP Need Help

2002-04-04 Thread Jason Tobias
I am trying to define variables through an anchor tag to retrive data from MySQL, When the script runs it displays Array. I am running WIN2K and IIS 5 echo "Camp Street Cafe"; Here is the script that is called. $Location_Info"; ?> -- PHP Database Mailing List (http://www.php.net/) To