-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoti.php
More file actions
59 lines (27 loc) · 727 Bytes
/
noti.php
File metadata and controls
59 lines (27 loc) · 727 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<head>
<title>Dues</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=windows-1252" />
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<?php
include 'newhead.php';
include 'db.php';
$sql = "SELECT * FROM comments";
$result = mysqli_query($con, $sql);
while($row = mysqli_fetch_assoc($result)) {
$txt=$row['comment_text'];
$sub=$row['comment_subject'];
echo $txt;
echo $sub;
}
mysqli_close($con);
?>
</div>
</div>
</div>
?>
</html>