index.php 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. require("../../class/connect.php");
  3. eCheckCloseMods('pl');//关闭模块
  4. $id=(int)$_GET['id'];
  5. $classid=(int)$_GET['classid'];
  6. $num=(int)$_GET['num'];
  7. if($num<1||$num>80)
  8. {
  9. $num=10;
  10. }
  11. $doaction=$_GET['doaction']=='dozt'?'dozt':'';
  12. require("../../class/db_sql.php");
  13. require("../../class/q_functions.php");
  14. $link=db_connect();
  15. $empire=new mysqlquery();
  16. //专题
  17. if($doaction=='dozt')
  18. {
  19. if(empty($classid))
  20. {
  21. exit();
  22. }
  23. //信息
  24. $infor=$empire->fetch1("select ztid,restb from {$dbtbpre}enewszt where ztid='$classid' limit 1");
  25. if(!$infor['ztid'])
  26. {
  27. exit();
  28. }
  29. $pubid='-'.$classid;
  30. }
  31. else
  32. {
  33. if(empty($id)||empty($classid))
  34. {
  35. exit();
  36. }
  37. include("../../data/dbcache/class.php");
  38. if(empty($class_r[$classid]['tbname']))
  39. {
  40. exit();
  41. }
  42. //信息
  43. $infor=$empire->fetch1("select classid,restb from {$dbtbpre}ecms_".$class_r[$classid]['tbname']." where id='$id' limit 1");
  44. if(!$infor['classid']||$infor['classid']!=$classid)
  45. {
  46. exit();
  47. }
  48. $pubid=ReturnInfoPubid($classid,$id);
  49. }
  50. //排序
  51. $addorder='plid desc';
  52. $myorder=(int)$_GET['myorder'];
  53. if($myorder==1)
  54. {
  55. $addorder='plid';
  56. }
  57. $sql=$empire->query("select * from {$dbtbpre}enewspl_".$infor['restb']." where pubid='$pubid' and checked=0 order by ".$addorder." limit ".$num);
  58. ?>
  59. document.write("");
  60. <?php
  61. while($r=$empire->fetch($sql))
  62. {
  63. $plusername=$r[username];
  64. if(empty($r[username]))
  65. {
  66. $plusername='匿名';
  67. }
  68. if($r[userid])
  69. {
  70. $plusername="<a href='$public_r[newsurl]e/space/?userid=$r[userid]' target='_blank'>$r[username]</a>";
  71. }
  72. $saytime=date('Y-m-d H:i:s',$r['saytime']);
  73. //ip
  74. $sayip=ToReturnXhIp($r[sayip]);
  75. $saytext=str_replace("\r\n","",$r['saytext']);
  76. $saytext=addslashes(RepPltextFace(stripSlashes($saytext)));//替换表情
  77. ?>
  78. document.write(" <table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"3\" cellspacing=\"1\" style=\"word-break:break-all; word-wrap:break-all;\"> <tr> <td height=\"30\"><span class=\"name\">本站网友 <?=$plusername?></span> <font color=\"#666666\">ip:<?=$sayip?></font></td> <td><div align=\"right\"><font color=\"#666666\"><?=$saytime?> 发表</font></div></td> </tr> <tr valign=\"top\"> <td height=\"50\" colspan=\"2\" class=\"text\"><?=$saytext?></td> </tr> <tr> <td height=\"30\">&nbsp;</td> <td><div align=\"right\" class=\"re\"> <a href=\"JavaScript:makeRequest(\'/e/pl/doaction.php?enews=DoForPl&plid=<?=$r[plid]?>&classid=<?=$classid?>&id=<?=$id?>&dopl=1&doajax=1&ajaxarea=zcpldiv<?=$r[plid]?>\',\'EchoReturnedText\',\'GET\',\'\');\">支持</a>[<span id=\"zcpldiv<?=$r[plid]?>\"><?=$r[zcnum]?></span>]&nbsp; <a href=\"JavaScript:makeRequest(\'/e/pl/doaction.php?enews=DoForPl&plid=<?=$r[plid]?>&classid=<?=$classid?>&id=<?=$id?>&dopl=0&doajax=1&ajaxarea=fdpldiv<?=$r[plid]?>\',\'EchoReturnedText\',\'GET\',\'\');\">反对</a>[<span id=\"fdpldiv<?=$r[plid]?>\"><?=$r[fdnum]?></span>] </div></td> </tr> </table> <table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"3\"> <tr> <td background=\"/skin/default/images/plhrbg.gif\"></td> </tr> </table>");
  79. <?php
  80. }
  81. ?>
  82. document.write("");
  83. <?php
  84. db_close();
  85. $empire=null;
  86. ?>