-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathajouterproduit.php
98 lines (85 loc) · 2.7 KB
/
ajouterproduit.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<Title>Ajouter</Title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<header>
<h1 >Ajouter Produit</h1>
<header>
<form action="" method="POST">
<div class="col-9">
<input type="text" name="np" class="form-control" id="np" placeholder="saisir un produit">
</div>
<div class="col-9">
<input type="number" name="pu" class="form-control" id="pu" placeholder="Enter prix unitaire">
</div>
<div class="col-9">
<input type="number" name="quantite" class="form-control" id="qt" placeholder="saisir quantite">
</div>
<button type="submit" name="ajouter" class="btn btn-primary">Ajouter</button>
</div>
</div>
</form>
<?php
$fp =fopen('prod.txt','a+');
/*if (isset($_POST['ajouter']))
{*/
$ndp=$_POST['np'];
$put=$_POST['pu'];
$qt=$_POST['quantite'];
$n=10;
$montant=$put*$qt;
$t=false;
while (!feof($fp))
{
$ligne=trim(fgets($fp));
$produit=explode(",",$ligne);
if( strcasecmp($ndp,$produit[0])==0){
$t=true;
}
}
if($t==true && isset($_POST['ajouter'])){
echo 'ce produit exist deja';
}
echo'<table class="table">
<tr>
<thead class="thead-dark">
<th scope="col">NOM</th>
<th scope="col">Prix Unitaire</th>
<th scope="col">Quantité</th>
<th scope="col">Montant</th>
</tr>
</thead>
';
if($t==false && isset($_POST['ajouter'])){
fputs($fp,"\n".$ndp.",".$put.",".$qt.",".$montant);
}
fseek($fp,0);
while (!feof($fp)){
$ligne=trim(fgets($fp));
$produit=explode(",",$ligne);
echo '<tr>';
if($produit[2]<10)
{
for($i=0; $i<count( $produit); $i++)
{
echo '<td class="bg-danger">' .$produit[$i]. '</td>';
}
}
else{
for($i=0; $i<count( $produit); $i++)
{
if($produit[$i]!="") {echo '<td>' .$produit[$i]. '</td>';}
}
}
echo "</tr>";
}
echo'</table>';
fclose($fp);
?>
</div>
</body>
</html>