Jump to content

What does this error mean?


forumnz

Recommended Posts

I get this:

 

 

Fatal error: Call to undefined function getsqlfield() in /usr/local/www/vhosts/bidbuddy.co.nz/httpdocs/browse.php on line 10

 

Line 10 is:

$defaultCategory=getSqlField("SELECT browsepage FROM auction_users WHERE id='".$_SESSION['memberid']."'", browsepage);

 

Thanks,

Sam.

Link to comment
https://forums.phpfreaks.com/topic/70560-what-does-this-error-mean/
Share on other sites

First error, is that you call a function that you didn't declare. You can't use any_name_you_wish();

 

without first declaring it by: fuction any_name_you_wish {

 

...... function stuff to do....

 

}

 

Hope that helps for the first part.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.