-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfetchComment.php
More file actions
37 lines (31 loc) · 1001 Bytes
/
Copy pathfetchComment.php
File metadata and controls
37 lines (31 loc) · 1001 Bytes
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
<head>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="application/javascript">
</script>
<style>
hr{
padding:0;
margin:0;
}
</style>
</head>
<?php
include("conn.php");
foreach ($dbh->query("select dish_id, username, content, time from user join comment where user.id = comment.user_id and dish_id = '$_POST[dish_id]' order by time desc") as $cmt) {
?>
<div class="row">
<div class="row">
<div class="col-md-9"><p class="tc-usr" style="display: inline;"><?php echo $cmt['username'] ?></p></div>
<div class="col-md-3"><p class="tc-time" style="display: inline;"><?php echo $cmt['time'] ?></p></div>
</div>
<div class="row">
<div class="col-md-12">
<p class="tc-content"><?php echo $cmt['content'] ?></p>
</div>
</div>
</div>
<hr class="style-six">
<?php
}
?>