forked from deoel/php-esis.16.17
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.php
More file actions
25 lines (24 loc) · 695 Bytes
/
script.php
File metadata and controls
25 lines (24 loc) · 695 Bytes
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
<!doctype html>
<html>
<head>
<title>Bonjour le monde</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="print.css" type="text/css" media="print" />
</head>
<body>
<h1>J'aime le PHP</h1>
<p>
<a href="traitement.php?prenom=Esther&age=15">Traitement</a>
</p>
<hr />
<form method="post" action="traitement.php">
<label for="nom">Nom : </label>
<input type="text" id="nom" name="nom" /><br />
<label for="postnom">Postnom : </label>
<input type="text" id="postnom" name="postnom" /><br />
<label for="prenom">Prénom : </label>
<input type="text" id="prenom" name="prenom" />
<input type="submit" value="Send" />
</form>
</body>
</html>