05-17-2008, 07:48 PM
|
#3 (permalink)
|
|
The Contributor
Join Date: Sep 2007
Posts: 32
Thanks: 0
|
Quote:
Originally Posted by Village Idiot
mysql_result requires three parameters, the resource, row, and field name.
|
It doesn't, have a look at PHP: mysql_result - Manual. It should return as an array yes, but try write "print_r($result);" instead of "print $result;", since print can't handle arrays (which print_r was made for).
|
|
|
|