-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertion1.php
39 lines (38 loc) · 1 KB
/
insertion1.php
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
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>insertion de données en PHP :: partie 1</title>
</head>
<body>
<form name="insertion" action="insertion2.php" method="POST">
<table border="0" align="center" cellspacing="2" cellpadding="2">
<tr align="center">
<td>nom</td>
<td><input type="text" name="first_name"></td>
</tr>
<tr align="center">
<td>prenom</td>
<td><input type="text" name="last_name"></td>
</tr>
<tr align="center">
<td>adresse</td>
<td><input type="text" name="email"></td>
</tr>
<tr align="center">
<td>code postal</td>
<td><input type="text" name="post"></td>
</tr>
<tr align="center">
<td>numéro de téléphone</td>
<td><input type="text" name="password"></td>
</tr>
<tr align="center">
<td>numéro de téléphone</td>
<td><input type="text" name="hash"></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" value="insérer"></td>
</tr>
</table>
</form>
</body>
</html>