-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectcells.php
More file actions
57 lines (54 loc) · 1.21 KB
/
Copy pathselectcells.php
File metadata and controls
57 lines (54 loc) · 1.21 KB
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
<?php
include "config.php";
?>
<div align="center">
<br>
<h3>You will see the cells with more capacity than the number you entered
<form action = "selectcells.php" method = "POST">
<br>
<input type="text" name="min_capacity" placeholder="Minimum Capacity">
<!DOCTYPE html>
<html>
<link rel= "stylesheet" href= "style.css">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>select cells</title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
</div>
<?php
if(isset($_POST['min_capacity']))
{
$capacity = $_POST['min_capacity'];
$sql_deneme = "SELECT * FROM cells WHERE capacity > '$capacity'";
$denemeque = mysqli_query($db, $sql_deneme);
while($row = mysqli_fetch_assoc($denemeque)) { ?>
<tr>
<td><?php echo $row['cell_no']; ?></td>
<td><?php echo $row['capacity']; ?></td>
</tr>
<?php }
}
?>
<button>FILTER</button>
</form>
<form action = "indexcells.php" method = "POST">
<button>RETURN</button>
</form>