PDA

View Full Version : Call to a member function on a non-obj...


joeboo
07-11-2003, 04:37 AM
I keep getting this error in a hack i just installed (website welcome), the error is:

Fatal error: Call to a member function on a non-object in /home/blackmag/public_html/webwelcome.php on line 25

I then take a look at line 25 and it says:$getnewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'");

I've heard something about global $DB_site but i have no idea how to use that function.. as if I have never used it before.

Gary King
07-11-2003, 03:00 PM
Put global $DB_site; right before that line that's causing you problems, and try again.

Xenon
07-11-2003, 10:17 PM
add a ; after Gary's line ;)

Gary King
07-11-2003, 10:49 PM
Edited :p

joeboo
07-17-2003, 07:12 AM
..I still get the same exact error.