Ver Mensaje Individual
  #10 (permalink)  
Antiguo 17/10/2011, 14:28
dksoft
 
Fecha de Ingreso: octubre-2010
Mensajes: 123
Antigüedad: 14 años, 1 mes
Puntos: 10
Respuesta: Problema con acentos & MYSQL

Bueno si probre con htmlentities:


Código PHP:
$contenido load("SELECT * FROM ".$MYSQL["prefix"]."posts WHERE post_status='publish' AND ID='".mysql_scape($noticia)."'",__FILE__,__LINE__);
list(
$replace["{\$imagen}"]) = load("SELECT guid FROM ".$MYSQL["prefix"]."posts WHERE post_parent='".$contenido["ID"]."' AND post_type='attachment' ORDER BY post_date DESC limit 1",__FILE__,__LINE__);
foreach(
$contenido as $key => $value) { $replace["{\$".$key."}"] = htmlentities($value); }
$page page("site-noticia.html");
$return strtr($page$replace); 
ahi mira el codigo o.O y dime si algo esta mal D:

y esta parte


Código PHP:
foreach($contenido as $key => $value) { $replace["{\$".$key."}"] = htmlentities($value); } 
es donde saca la informacion de la base de datos.