Diferencia entre revisiones de «Usuario:ManuelRomero/NewPHP/B2T1/formularios/ejercicios»
De WikiEducator
Línea 35: | Línea 35: | ||
*El usuario y password han de coincidir | *El usuario y password han de coincidir | ||
*En caso de que no coincidan se mostrar junto con el formulario un msj de error | *En caso de que no coincidan se mostrar junto con el formulario un msj de error | ||
− | + | }} | |
+ | |||
<source lang=php> | <source lang=php> | ||
<!DOCTYPE html> | <!DOCTYPE html> | ||
Línea 86: | Línea 87: | ||
</html> | </html> | ||
</source> | </source> | ||
− | |||
− | |||
− |
Revisión de 21:11 3 oct 2017
Contador de accesos
Contador de accesos con nombre
Se trata de modificar el ejercicio uno.
|
<!DOCTYPE html> <!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <?php $msj = false; $error = false; if ($_POST['enviar']) { //leo variables de entrada $nombre = filter_input(INPUT_POST, 'nombre'); $pass = filter_input(INPUT_POST, 'pass'); if ($nombre === $pass) $msj = "Bienvenido $nombre"; else $error = "Usuarios incorrecto, vuelva a insetar"; } ?> <?php if (!$msj): echo $error ?> <form action="index.php" method="POST"> Nombre <input type="text " name ="nombre" value=""> Password <input type="text " name ="pass" value=""><br /> <input type="submit" value="Validar" name="enviar"> </form> <?php else: echo $msj; endif; ?> </body> </html>