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
https://forums.phpfreaks.com/topic/207619-catchable-fatal-error/
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());

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.

Archived

This topic is now archived and is closed to further replies.

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