Jump to content
MakeWebGames

Hi I Got An Error


Jameoo

Recommended Posts

hi i got this error when i installed my game cand you please help me and tell me what i forhot i get it as soon as i log in

 

Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 11 in /home/ufruh/public_html/class/class_db_mysql.php on line 94
Link to comment
Share on other sites

Guest Anonymous

Re: Hi I Got An Error

Need more information here....

The complete DDF - Use phpMyAdmin to export (wihout data) and post the resulting SQL. Can you also supply the cardinality of any all all indices.

Link to comment
Share on other sites

  • 2 weeks later...

Re: Hi I Got An Error

:mrgreen:

 

so the answer to the error is:::

if you ever have a error

Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 11 in /home/ufruh/public_html/class/class_db_mysql.php on line 94

or any like it

that means that you have set up a table // field with no data input so you check up on what data you have and insert a field into it

:evil:

Link to comment
Share on other sites

  • 2 months later...

Re: Hi I Got An Error

If you get that error on the Mail Compose Message page, when you use the 'Compose Message' link, replace

{

$user=$db->fetch_single($db->query("SELECT username FROM users WHERE userid={$_GET['ID']}"));

}

with

if($_GET['ID'])

{

$user=$db->fetch_single($db->query("SELECT username FROM users WHERE userid={$_GET['ID']}"));

}

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...