forumnz Posted September 25, 2007 Share Posted September 25, 2007 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 More sharing options...
TheFilmGod Posted September 25, 2007 Share Posted September 25, 2007 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. Link to comment https://forums.phpfreaks.com/topic/70560-what-does-this-error-mean/#findComment-354540 Share on other sites More sharing options...
steelmanronald06 Posted September 25, 2007 Share Posted September 25, 2007 are you using some third-party script that says you can use that function? If so, then be sure you're including the proper file in that file. Link to comment https://forums.phpfreaks.com/topic/70560-what-does-this-error-mean/#findComment-354554 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.