-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddTable.php
61 lines (51 loc) · 1.5 KB
/
addTable.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
<?php
require 'admin.php';
if (isset($_POST['add'])) {
$table = $_POST['table'];
$check = mysqli_query($conn,"SELECT seatNo FROM tables WHERE seatNo='$table'");
if (mysqli_num_rows($check)==0) {
$query = mysqli_query($conn,"INSERT INTO tables(seatNo)VALUES('$table')");
}
else {
echo "already you have added !";
}
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form method="post">
<input type="text" name="table" placeholder="000-(0 people)">
<input type="submit" name="add" value="add">
</form>
<table>
<tr>
<th>SL</th>
<th>Table ID</th>
<th>Delete</th>
</tr>
<?php
$i=0;
$query = mysqli_query($conn,"SELECT * FROM tables");
if (mysqli_num_rows($query)>0) {
while ($a = mysqli_fetch_assoc($query)) {
echo "<tr>";
$seat =$a['seatNo'];
echo "<td>".$a['id']."</td>";
echo "<td>".$a['seatNo']."</td>";
echo "<td><form method='post'><input type='submit' value='remove' name='remove$i'></form></td>";
echo "</tr>";
if (isset($_POST["remove$i"])) {
$delete = mysqli_query($conn,"DELETE FROM tables WHERE seatNo ='$seat'");
}
$i++;
}
}
?>
</table>
</body>
</html>