-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnots.php
27 lines (20 loc) · 896 Bytes
/
nots.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
<?php
include("student.php");
$Querye="SELECT * from chats where fromm = '$id' and subject = '$n' and timemsg = '$ti' order by timemsg "; $dbresultm=mysql_query($Querye);
if(mysql_num_rows($dbresultm) >0)
{
while($row=mysql_fetch_row($dbresultm))
{
echo "<div class='fixed'><div class='titlev' align='center'>$row[2]      <font align=right><a href= '/sf.php?n=$row[2]&ti=$row[6]' style='text-decoration:none'>DELETE</a></font></div><div class='content'>";
echo "<div class='menu'>From:$row[1]    Send on :- $row[6]"."</div>";
echo "<div class='menu'>  <xmp>$row[3]</xmp>"."</div>";
if(row[7] !== 0)
{ echo "<div class='menu'>Attached File:- <a href='$row[7]'>Click Here To Download</a>"."</div>";
}
echo "</div></div>";
}
}
else
{
}
?>