Al final lo solucione de diferente modo (Este post deberia estar en PHP por eso):
Codificacion:
Código PHP:
$html= htmlentities(addslashes($html), ENT_NOQUOTES);
Decodificacion:
Código PHP:
$html= html_entity_decode(stripslashes($post2->post),ENT_QUOTES);
S2