> $productresult = mysql_query($productquery);
> $productinfo = mysql_fetch_array($productresult);  //THIS line produces the error

Well, you don't check for errors.  Always always always perform proper
error checking:

$productresult = mysql_query($productquery) or die(mysql_error());

Do that and it will probably be very obvious that your $productquery has
some sort of error in it.

-Rasmus


-- 
PHP General 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