mi problema es que yo tengo un formulari con un input en el que puedo meter un texto cualquiera pero si introduzco un caracter como "á" no me aparece ni "á", me aparece "á". En cambio, si quito htmlentities() me aparece directamente "á"
Código PHP:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Pruebas</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <form action="?env=s" method="post"> <input type="text" name="texto" /> <input type="submit" value="Enviar" /> </form> <?php if($_GET['env'] == "s") { } ?> </body> </html>