I try to save html content to the database, with \' or \" it auto give a slash which is great so I don\'t have to do mysql_escape_string. However when I load up the string i
use
$pdo->bindValue(':html', $html, PDO::PARAM_STR);
instead of
$pdo->bindParam(:html, $html);