Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/06/2005, 06:30
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
Muy raro...
Probá a ver si está bien la tabla que te devuelve
Código PHP:
<?php
$entities 
get_html_translation_table(HTML_ENTITIES);
foreach (
$entities as $entity) {
   
$new_entities[$entity] = htmlspecialchars($entity);
}
echo 
"<pre>";
print_r($new_entities);
echo 
"</pre>";
?>