-
Notifications
You must be signed in to change notification settings - Fork 0
/
nouveau.php
49 lines (34 loc) · 873 Bytes
/
nouveau.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
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<title>index</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style1.css">
<link rel="icon" type="image/x-icon" href="téléchargement.png">
</head>
<body>
<?php include("header.php"); ?>
<h2> Ajouter un Livre </h2>
<form method="POST" action="inserer.php">
<table align="center">
<tr>
<td>Titre </td>
<td> <input class="in1" type="text" name="titre" size="40" > </td>
</tr>
<tr>
<td>Auteur </td>
<td> <input type="text" name="auteur" size="40" > </td>
</tr>
<tr>
<td>Edition </td>
<td> <input type="text" name="edition" size="40" > </td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Envoyer" name="enrg" >
<input type="reset" value="Supprimer" name="res"></td>
</tr>
</table>
</form>
<?php include("footer.php")?>
</body>
</html>