Código HTML:
Ver original
<!DOCTYPE HTML> <meta charset="utf8"> <link href="jquery-ui/css/smoothness/jquery-ui-1.10.3.custom.css" rel="stylesheet" /> <link href="views/index.css" rel="stylesheet" /> <body> <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>"> Cadena: <input type="text" name="string" /> <br /> <input type="submit" value="Buscar" /> </form> <?php if(isset($_POST['string'])){ echo $_POST['string']; } ?> </body>
Pero si escribo en el campo: <script>alert();</script>
Luego me imprime en el codigo fuente <script> </script>
En cambio si pongo <b>cosa</b> funciona
Por que ??