Debugging error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • techjohnny@gmail.com

    #1

    Debugging error

    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?

  • Schraalhans Keukenmeester

    #2
    Re: Debugging error

    At Mon, 11 Jun 2007 15:15:04 -0700, techjohnny@gmai l.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 .Spamtrapexampl e.nl
    [Remove the lowercase part of Spamtrap to send me a message]

    "strcmp('apples ','oranges') < 0"

    Comment

    Working...