-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsent.php
50 lines (28 loc) · 963 Bytes
/
sent.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
<?php
$get_receiver="select * from users where user_id='$msg_receiver' ORDER by 1 DESC" ;
$run_receiver=mysqli_query($con,$get_receiver);
$row_sender=mysqli_fetch_array($run_receiver);
$receiver_name=$row_sender['user_name'];
?>
<table class="table table-hover">
<thead>
<tr>
<th>Sent To</th>
<th>Subject</th>
<th>Date</th>
<th>See Reply</th>
</tr>
</thead>
<tbody>
<tr>
<?php echo "<td><a href='user_profile.php?u_id=$msg_receiver'>
$sender_name
</a></td> "; ?>
<?php echo"<td><a href='my_messages.php?msg_id=$msg_id'> $msg_sub </a></td>
";?>
<td><?php echo $msg_date ;?></td>
<?php echo "<td><a href='my_messages.php?msg_id=$msg_id' target='self'>See Reply</a></td>
";?>
</tr>
</tbody>
</table>