USA ESTA FUNCION:
Código PHP:
function caracteres_html($texto){
$texto = htmlentities($texto, ENT_NOQUOTES); // Convertir caracteres especiales a entidades
$texto = htmlspecialchars_decode($texto, ENT_NOQUOTES); // Dejar <, & y > como estaban
return $texto;
}
Saludos