-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejemplo1_cpmx5.html
28 lines (28 loc) · 981 Bytes
/
ejemplo1_cpmx5.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>Ejemplo de un Formulario</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div><img class="logo" src="http://www.comunidaddephp.org/librerias/temas/2012/image/logo.png" title="Comunidad de PHP"/></div>
<h2>Por GET</h2>
<div>
<form action="" method="GET">
<input type="text" name="name" value="Aquí va tu nombre"/><br />
<input type="text" name="nick" value="Ingresa tu NICK lml"/><br />
<input type="text" name="email" value=""/><br />
<input type="submit" value="Enviar" />
</form>
</div>
<h2>Ahora por POST ¿Qué vemos?</h2>
<div>
<form action="" method="POST">
<input type="text" name="name" value="Aquí va tu nombre"/><br />
<input type="text" name="nick" value="Ingresa tu NICK lml"/><br />
<input type="text" name="email" value=""/><br />
<input type="submit" value="Enviar" />
</form>
</div>
</body>
</html>