-
Notifications
You must be signed in to change notification settings - Fork 1
/
restaurant_list.php
53 lines (28 loc) · 992 Bytes
/
restaurant_list.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
<?php include "server_connect.php" ?>
<?php
$query = "SELECT * FROM r_signup";
?>
<table class="table table-hover table-striped">
<?php
// $name = $_GET['name'];
$select_posts = mysqli_query($db,$query);
while ($row = mysqli_fetch_assoc($select_posts)){
$r_name = $row['r_name'];
$rating = $row['rating'];
$address = $row['r_address'];
$email = $row ['email'];
if($email!='0'){
echo "<tr>";
echo "<td> <a href = 'restaurant_home.php?name=$r_name'>{$r_name}</a></td>";
echo "<td>{$rating}*</td>";
echo "<td>{$address}</td>";
// <span class="fa fa-star checked"></span>
// <span class="fa fa-star checked"></span>
// <span class="fa fa-star checked"></span>
// <span class="fa fa-star checked"></span>
// <span class="fa fa-star"></span>
echo "</tr>";
}
}
?>
</table>