Next time show your code like a text, we're too lazy to retype it from screenshot :)
As I see on this little screenshot you have a such string:
$sql = "UPDATE `#__cck_store_form_texto` SET fcont=".$fcont."where id=".$live.";
It's not correct, you haven't concat last qoute. Correct string have to be:
$sql = "UPDATE `#__cck_store_form_texto` SET fcont='".$fcont."' where id=".$live;
Really, you don't need to break qoutes. Double qoutes allow it:
$sql = "UPDATE `#__cck_store_form_texto` SET fcont='$fcont' where id=$live";