-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewcomplaints.php
33 lines (33 loc) · 1.56 KB
/
viewcomplaints.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
<?php include('header.php'); ?>
<html>
<body>
<div>
<?php
mysql_connect('localhost','root','');
mysql_select_db('sba');
$result=mysql_query("select * from complaintdetails");
?>
<center>
<h1 align="center">Complaints!!</h1>
<table class="table table-hover">
<tr>
<th style="text-align: center;">Location</th>
<th style="text-align: center;">Subject</th>
<th style="text-align: center;">Description</th>
</tr>
<?php
while ($array=mysql_fetch_row($result)) {
print "<tr> <td>";
echo $array[2];
print "</td> <td>";
echo $array[3];
print "</td> <td>";
echo $array[4];
print "</td> </tr";
}
?>
</table>
</center>
</div>
</body>
</html>