-
Notifications
You must be signed in to change notification settings - Fork 0
/
ajouterproduit.html
53 lines (52 loc) · 987 Bytes
/
ajouterproduit.html
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
50
51
52
53
<HTML>
<head>
<script type="text/javascript" src="produit.js"></script>
</head>
<body>
<form method="POST" action="ajoutprod.php">
<table>
<caption>Ajouter Produit</caption>
<tr>
<td>idproduit</td>
<td><input type="number" name="idcat"></td>
</tr>
<tr>
<td>Nomproduit</td>
<td><input type="text" name="nomcat"></td>
</tr>
<tr>
<td>idsouscat</td>
<td><input type="number" name="idsouscat"></td>
</tr>
<tr>
<td>idcat</td>
<td><input type="number" name="idcat"></td>
</tr>
<tr>
<td>prix</td>
<td><input type="number" name="prix"></td>
</tr>
<tr>
<td>Quantite</td>
<td><input type="number" name="qte"></td>
</tr>
<tr>
<td>Etat</td>
<td><input type="number" name="etat"></td>
</tr>
<tr>
<td>Remise</td>
<td><input type="number" name="remise"></td>
</tr>
<tr>
<td>photo</td>
<td><input type="text" name="photo"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="ajouter" value="ajouter" ></td>
</tr>
</table>
</form>
</body>
</HTMl>