Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/12/2008, 10:18
Avatar de OsSk4R
OsSk4R
 
Fecha de Ingreso: octubre-2006
Ubicación: $this->home
Mensajes: 824
Antigüedad: 17 años, 6 meses
Puntos: 74
Respuesta: Problema con las tíldes

Intenta utilizar utf8_encode() sino me equivoco.

Código PHP:
while( $value odbc_fetch_array($row))
    {
       
$valor=utf8_encode($value['Nombre']);
       
$valores[$i]=$valor;
       
$i++;
    }
return 
$valores
Ya que utf8_decode() transforma UTF-8 a ISO-8859-1 y utf8_encode() transforma ISO-8859-1 a UTF-8

Saludos,