Hola!!!
Tengo una duda sobre htmlentities y formularios. Si realizo lo siguiente:
<form name="form1" method="post" action="pag.php">
<input name="nombre" type="text" value="<?php echo htmlentities($campo, ENT_QUOTES, "utf-8"); ?>" />
<input type="submit" name="button" id="button" value="Enviar" />
</form>
El campo del formulario "nombre" tiene un valor convertido a entidades mediante htmlentities. Sin embargo, cuando lo recojo mediante S_POST me llega sin htmlentities, es decir, sin entidades, con texto plano...
¿ Por que sucede esto?
Un saludo!!!