I\'m quite new to PHP so sorry if sounds such an easy problem... :)
I\'m having an error message when inserting content which contains quotes into my db. here\'s wha
it should work without the sprintf stuff
$title = mysql_real_escape_string($_POST[title]); $body = mysql_real_escape_string($_POST[body]);