Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/10/2011, 16:40
Avatar de SirDuque
SirDuque
 
Fecha de Ingreso: febrero-2009
Ubicación: Paso del Rey, Buenos Aires, Argentina
Mensajes: 975
Antigüedad: 15 años, 2 meses
Puntos: 89
Respuesta: Problemas con tildes y ñ al guardar en bbdd

htmlentities()

es la mejor opcion!

INSERT:

Código PHP:
$texto htmlentities($_POST['texto']);
$SQL =  "INSERT INTO tabla (`texto`) VALUES ('$texto')";
mysql_query($SQL) or die( mysql_error()); 
Mostrar:

Código PHP:
$SQL "SELECT * FROM tabla";
$QUERY mysql_query($SQL) or die( mysql_error());
$row mysql_fetch_assoc($QUERY);
echo 
htmlentities($row['texto']); 
__________________
Mono programando!
twitter.com/eguimariano