-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashboard.php
71 lines (68 loc) · 3.56 KB
/
dashboard.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
include("header.php");
include("connection.php");
$result = mysqli_query($con,"SELECT * FROM Persons WHERE FirstName='Peter'");
while($row = mysqli_fetch_array($result))
{
echo $row['FirstName'] . " " . $row['LastName'];
echo "<br>";
}
?>
<div id="main">
<div id="content" class="left">
<div class="highlight">
<h3>Admin Dashboard</h3>
<p> </p>
<form id="form1" name="form1" method="post" action="">
<p> </p>
<p> </p>
</form>
<table width="541" height="397" >
<tr>
<td width="99" height="131" align="center" valign="top"><p><a href="dashboard.php"><img src="images/home.jpg" width="83" height="58" /></a></p>
<p><strong><a href="udashboard.php">Home</a></strong></p></td>
<td width="117" align="center" valign="top"><p><a href="viewsurvey.php"><img src="images/download (4).jpg" width="83" height="58" /></a></p>
<p><strong><a href="viewsurvey.php">View Servey</a></strong></p></td>
<td width="124" align="center" valign="top"><p><a href="surveyschool.php"><img src="images/images (6).jpg" width="83" height="58" /></a></p>
<p><strong><a href="surveyschool.php">Servey Report</a></strong></p></td>
<td width="116" align="center" valign="top"><p><a href="viewusers.php"><img src="images/user.jpg" width="83" height="58" /></a></p>
<p><strong><a href="viewusers.php">Users</a></strong></p></td>
</tr>
<tr>
<td align="center" valign="top"><p><a href="viewinstitution.php"><img src="images/images (5).jpg" width="83" height="58" /></a></p>
<p><strong><a href="viewinstitution.php">Institutions</a></strong></p></td>
<td align="center" valign="top"><p><a href="update.php"><img src="images/downl1oad.jpg" width="83" height="58" /></a></p>
<p><strong><a href="update.php">News Updates</a></strong></p></td>
<td align="center" valign="top"><p><strong><a href="viewgallery.php"><img src="images/download (2).jpg" width="83" height="58" /></a></strong></p>
<p><strong><a href="viewgallery.php">Gallery</a></strong></p></td>
<td align="center" valign="top"><p><a href="admin.php"><img src="images/download (3).jpg" width="83" height="58" /></a></p>
<p><strong><a href="admin.php">Configuration</a></strong></p></td>
</tr>
<tr>
<td height="110" colspan="2" align="center" valign="top"><p><a href="surveytype.php"><img src="images/report.jpg" width="97" height="79" /></a></p>
<p><strong><a href="surveytype.php">Reports</a></strong></p></td>
<td height="110" align="center" valign="top"><p><a href="logout.php"><img src="images/logout.jpg" width="97" height="79" /><strong></strong></a></p> <a href="logout.php"><strong><a href="logout.php">Logout</a></strong></a></td>
<td height="110" align="center" valign="top"><a href="logout.php"><strong></strong></a><p> </p></td>
</tr>
</table>
<p> </p>
</div>
<div class="projects">
<div class="item"></div>
<div class="item">
<div class="cl"> </div>
</div>
</div>
</div>
<?php
include("sidebar.php");
?>
<div class="cl"> </div>
</div>
<div class="shadow-l"></div>
<div class="shadow-r"></div>
<div class="shadow-b"></div>
</div>
<?php
include("footer.php");
?>