acentos.php 218 B

123456
  1. <?php
  2. $text = mb_strtoupper($_GET["text"]);
  3. $user = str_ireplace( array("Á","É","Í","Ó","Ú","Ñ","Ä","Ë","Ï","Ö","Ü"), array("A","E","I","O","U","N","A","E","I","O","U"), $text);
  4. echo $text." -- ". $user;
  5. ?>