Просмотр файла mail.php

Размер файла: 2.55Kb
  1. <?php
  2. include 'inc/db.php';
  3. if (!$user)header("Location: /aut.php");
  4. $time=time();
  5. function hc($in){
  6. return htmlspecialchars($in);
  7. }
  8. function me($in){
  9. return mysql_escape_string($in);
  10. }
  11. if (!$_GET['p'])$_GET['p']=1;
  12. $page=intval($_GET['p']);
  13. $start=($page*15-15);
  14. $id=intval($_GET['id']);
  15. $ank11=gus($id);
  16. mysql_query("UPDATE `mail` SET `read` = '1' WHERE `to` = '$user[id]' AND `from` = '$id'");
  17. if ((mysql_num_rows(mysql_query("SELECT `id` FROM `user` WHERE `id` = '$id'"))==0) && ($id!=0)){
  18. header("Location: /index.php");
  19. exit;
  20. }
  21. if ($id==$user['id']){
  22. header("Location: /index.php");
  23. exit;
  24. }
  25. include 'inc/1.php';
  26. $hier=str_replace("{name}", $user['name'], str_replace("{names}", $user['aname'], $ank11['hier']));
  27. if ($ank11['hier'])msg("<center>".out($hier)."</center>");
  28. if ($_POST['msg']){
  29. $msg=me($_POST['msg']);
  30. mysql_query("INSERT INTO `mail` (`from`, `to`, `msg`, `time`) values ('$user[id]', '$id', '$msg', '".time()."')");
  31. $reply=str_replace("{name}", $ank11['name'], str_replace("{names}", $ank11['aname'], $ank11['reply']));
  32. if (($ank11['reply_on']==1) && ((time()-$ank11['click'])>600))mysql_query("INSERT INTO `mail` (`from`, `to`, `msg`, `time`) values ('$id', '$user[id]', '$reply', '".time()."')");
  33. echo "<div class='msg'>Отправлено</div>";
  34. }
  35. $q=mysql_query("SELECT * FROM `mail` WHERE (`to` = '$user[id]' AND `from` = '$id') OR (`to` = '$id' AND `from` = '$user[id]') ORDER BY `time` DESC LIMIT $start, 15");
  36. echo "<div class='input'><form action='?id=$id&' method='POST'>Сообщение:<br><textarea name='msg'></textarea><br><input type='submit' name='OK' value='Отправить'></form></div>";
  37. $a=1;
  38. while ($f=mysql_fetch_assoc($q)){
  39. $ank=gus($f['from']);
  40. $ololo=out($f['msg']);
  41. if ($f['read']==0)echo "<div class='p".($a%2)."'>".im($ank['id'])." <a href='ank.php?id=$ank[id]'>".hc($ank['name'])."</a>".on($ank['id'])." <font color='red'><b>[!]</b></font> (".vremja($f['time']).")<br>$ololo</div>";
  42. else
  43. echo "<div class='p".($a%2)."'>".im($ank['id'])." <a href='ank.php?id=$ank[id]'>".hc($ank['name'])."</a>".on($ank['id'])." (".vremja($f['time']).")<br>$ololo</div>";
  44. $a++;
  45. }
  46. $q1=(mysql_num_rows(mysql_query("SELECT `to`, `from` FROM `mail` WHERE (`to` = '$user[id]' AND `from` = '$id') OR (`to` = '$id' AND `from` = '$user[id]')"))/15);
  47. $q2=round(mysql_num_rows(mysql_query("SELECT `to`, `from` FROM `mail` WHERE (`to` = '$user[id]' AND `from` = '$id') OR (`to` = '$id' AND `from` = '$user[id]')"))/15);
  48. if ($q1>$q2)$pages=($q2+1);
  49. else
  50. $pages=$q2;
  51. pages($pages, $page, "?id=$id&p");
  52. include_once 'inc/foot.php';
  53. ?>