Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/02/2011, 14:49
Avatar de naitmeir
naitmeir
 
Fecha de Ingreso: junio-2008
Ubicación: Barcelona
Mensajes: 227
Antigüedad: 16 años, 5 meses
Puntos: 0
Respuesta: Guardar html en BD

Al final lo solucione de diferente modo (Este post deberia estar en PHP por eso):

Codificacion:

Código PHP:
$htmlhtmlentities(addslashes($html), ENT_NOQUOTES); 
Decodificacion:

Código PHP:
$htmlhtml_entity_decode(stripslashes($post2->post),ENT_QUOTES); 

S2