Ver Mensaje Individual
  #7 (permalink)  
Antiguo 03/04/2011, 12:20
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: por que echo chr(195); no me imprime la ñ ?

A mi no me imprime una ñ porque la ñ es 241...
Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html>
  3.     <head>
  4.         <meta name="Content-type" content="text/html; charset=utf-8" />
  5.     </head>
  6.     <body>
  7.         ñ = <?php echo chr(241); ?>
  8.     </body>
  9. </html>

Saludos.