-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (49 loc) · 932 Bytes
/
index.php
File metadata and controls
62 lines (49 loc) · 932 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
59
60
61
62
<?php
session_start();
if(!isset($_SESSION['username'])){
header("Location: login.php");
exit();
}
include("mysqli_connect.php");
?>
<html>
<head>
<title>Contact</title>
</head>
<body>
<center>
<h2>Minimata</h2>
</center>
<ul>
<li><a href="index.php">Index</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
<fieldset><legend>Minimata</legend>
<?php
$q="SELECT * FROM contact";
$r=mysqli_query($dbc,$q);
if(mysqli_num_rows($r)>0){
echo '<center><table><tr>
<th>ID</th>
<th>Onoma</th>
<th>Email</th>
<th>Minima</th>
</tr>';
while($row=mysqli_fetch_array($r,MYSQLI_ASSOC)){
echo '<tr>
<td>'.$row['con_id'].'</td>
<td>'.$row['name'].'</td>
<td>'.$row['email'].'</td>
<td>'.$row['msg'].'</td>
</tr>';
}
echo '</table>
</center>';
}else{
echo '<center><h2>Den uparxoun minimata akoma</h2></center>';
}
?>
</fieldset>
</body>
</html>