Jump to content
MakeWebGames

Some Body Help me !!!


nyinyi27

Recommended Posts

Guest Anonymous

Re: Some Body Help me !!!

IIRC it's attempting to use the result set returned to from mysql_query to fetch a row, where the result set itself is FALSE.

Therefore, the error is actually in the initial query itself. This is the result of not check the result of every query and is fairly common and simple to fix.

Posting the relevant lines will help.

Link to comment
Share on other sites

Re: Some Body Help me !!!

 

IIRC it's attempting to use the result set returned to from mysql_query to fetch a row, where the result set itself is FALSE.

Therefore, the error is actually in the initial query itself. This is the result of not check the result of every query and is fairly common and simple to fix.

Posting the relevant lines will help.

Here The Lines

line91function fetch_single($result=0)

line92 {

line93 if(!$result) { $result=$this->result; }

line94 return mysql_result($result, 0, 0);

line95 }

Link to comment
Share on other sites

Re: Some Body Help me !!!

na, the database class isn't errored. Combine mine and nyna's posts and you get:

 

Posting the relevant lines will help.

looks like something in loggedin.php is in error.

 

So, you've gotta find where you are using that "fetch_single" method in loggedin.php. It's how you're using the method that's in error, not the method itself.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...