-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathview_amessage.php
executable file
·35 lines (32 loc) · 1.07 KB
/
view_amessage.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
<?php
session_start();
include 'db.php';
include 'header.php';
?>
<html>
<head>
<link href="style.css" rel="stylesheet">
</head>
<body id="slider_container_1" style="margin-left: 18%; margin-right:15%">
<div style="margin-left: 200px;">
<div id="mhead">
Message From Admin
</div>
<div id="divf1">
<?php
$result = mysqli_query($conn, "SELECT * FROM send_donator where uid=".$_SESSION['user']);
while($row = mysqli_fetch_array($result)) {
?>
<div id="divf1c">
Agent Name : <?=$row['agname']?><br>
Email : <?=$row['agemail']?><br>
Phone : <?=$row['agphone']?><br>
Place : <?=$row['agplace']?><br>
</div>
<?php
}
?>
</div>
</div>
</body>
</html>