Jump to content

Catchable fatal error ?


dean7

Recommended Posts

Hi all, ive been working on one of my scripts for my website most of today but ive came to an error which im not sure about.

 

The Error says:

Catchable fatal error: Object of class stdClass could not be converted to string in /home/www/*****-******.com/hts2.php on line 372

 

$racelost = mysql_query("SELECT racelost FROM garage WHERE id='$carid'") or die (mysql_error());

 

That is line 372, but I carnt see nothing wrong with it :(.

 

Can anyone help me here please?

 

Thanks.

Link to comment
Share on other sites

Here's your error. $carid is in fact an object (I'm guessing coming from mysql_fetch_object) that contains the value you need. Your query should look like this:

$racelost = mysql_query("SELECT racelost FROM garage WHERE id='{$carid->carid}'") or die (mysql_error());

Thanks, that worked to remove that error.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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

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

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.