Diferencia entre revisiones de «Usuario:ManuelRomero/ProgramacionWeb/Inaem2019/formularios/resumen»
De WikiEducator
(Página creada con «===Crear un formulario típico=== <source lang=html> ..... <form action="index.php" method="POST"> Nombre <input type=text name = 'nombre'> Apellido...») |
(→Crear un formulario típico) |
||
Línea 1: | Línea 1: | ||
===Crear un formulario típico=== | ===Crear un formulario típico=== | ||
− | <source lang= | + | <source lang=html5> |
..... | ..... | ||
<form action="index.php" method="POST"> | <form action="index.php" method="POST"> | ||
Línea 12: | Línea 12: | ||
---- | ---- | ||
</source> | </source> | ||
+ | |||
===Leer datos en el servidor=== | ===Leer datos en el servidor=== | ||
<?php | <?php |
Revisión de 02:37 12 feb 2019
Crear un formulario típico
..... <form action="index.php" method="POST"> Nombre <input type=text name = 'nombre'> Apellido <input type=text name = 'apellido'> <br /> <input type=submit value='enviar' name = 'submit'> </form> ----
Leer datos en el servidor
<?php $nombre = $_POST['nombre']; $apellido = $_POST['apellido']; ?>
Leer sólo si hemos presionado el submit
<?php if (isset$_POST['submit')){
$nombre = $_POST['nombre']; $apellido = $_POST['apellido']; $msj = "Has insertado los valores nombre =$nombre y apellido = $apellido";
}else{
$msj = "Se carga la página sin haber hecho click en el submit";
} ?> <!>