Moving things around to make it more structured. and turn into library

This commit is contained in:
Jocelyn Fiat
2011-05-27 15:21:30 +02:00
parent c553bd1e1e
commit 54b95650c5
90 changed files with 24 additions and 2 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>