|
Posted by Schraalhans Keukenmeester on 06/11/07 23:33
At Mon, 11 Jun 2007 15:15:04 -0700, techjohnny@gmail.com let h(is|er)
monkeys type:
> Hey, I'm getting this error message after submitting a form in PHP:
>
> Fatal error: Call to undefined function sql_errno() in /home/jplane/
> certcent/phpweb/phpnuke/html/admin/modules/quiz.php on line 542
>
> It's suppose to write information to some sql tables. I'd like to
> further debug this message, maybe in mysql?
It's not an sql error, but a PHP error; you are using a function PHP
hasn't found a definition for. (There isn't one in the default PHP
libaries function set.) Did you mean mysql_errno() perhaps?
--
Schraalhans Keukenmeester - schraalhans@the.Spamtrapexample.nl
[Remove the lowercase part of Spamtrap to send me a message]
"strcmp('apples','oranges') < 0"
[Back to original message]
|