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