Commit Jocelyn changes.

This commit is contained in:
Javier Velilla
2011-05-28 19:40:31 -03:00
parent af852498be
commit 12d9dcfff5
97 changed files with 1000 additions and 663 deletions
+19
View File
@@ -0,0 +1,19 @@
<html>
<head>
<title>POST example</title>
</head>
<body>
<h1> POST example </h1>
<form action="index.html" method="POST">
<input type="text" name="name" value="a simple name"/> <br/>
<input type="text" name="text" value="a tiny text"/>
<input type="submit" value="POST"/>
</form>
<form action="index.html" method="GET">
<input type="text" name="name" value="a simple name"/> <br/>
<input type="text" name="text" value="a tiny text"/>
<input type="submit" value="GET"/>
</form>
</body>
</html>