Error type: 8: Undefined property: stdClass::$imagefile in /home/thequiz/public_html/admin/illusion.php at line 143 Line 137 to 143 is: // check for presence of uploaded images if ( IsSet($_FILES["ThumbFileName"])) { $oldFileName = ""; $result = executeSelection("select thumbfile from illusions where illusionId = $quizId"); if ( $obj = mysql_fetch_object($result)) $oldFileName = $obj->imagefile; but the red line is line 143 please help! Thank You
See what's in the $obj. Looking at your code, there's no reason why: $obj->imagefile would work. if ( $obj = mysql_fetch_object($result)) print_r($obj); Most likely you will need to use: $oldFileName = $obj->thumbfile;