index.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. require("../../class/connect.php");
  3. require("../../class/q_functions.php");
  4. require("../../class/db_sql.php");
  5. $link=db_connect();
  6. $empire=new mysqlquery();
  7. $editor=1;
  8. $picid=(int)$_GET['picid'];
  9. if(empty($picid))
  10. {
  11. printerror("ErrorUrl","history.go(-1)",1);
  12. }
  13. $r=$empire->fetch1("select picid,title,pictext,pic_url from {$dbtbpre}enewspic where picid='$picid'");
  14. if(empty($r[picid]))
  15. {
  16. printerror("ErrorUrl","history.go(-1)",1);
  17. }
  18. db_close();
  19. $empire=null;
  20. ?>
  21. <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  22. <title><?=$r[title]?></title>
  23. <style>
  24. td {
  25. font-size: 12px;
  26. }
  27. body {
  28. font-size: 12px;
  29. text-align: center;
  30. margin-top: 0px;
  31. margin-right: 0px;
  32. margin-bottom: 0px;
  33. margin-left: 0px;
  34. }
  35. hr { height: 1px; color: #000000 }
  36. textarea {
  37. font-size: 12px;FONT-FAMILY: "Tahoma", "MS Shell Dlg";
  38. }
  39. A:link, A:active
  40. {
  41. color: #333366;
  42. text-decoration: none;
  43. }
  44. A:visited
  45. {
  46. color: #333366;
  47. text-decoration: none;
  48. }
  49. A:hover
  50. {
  51. color: #FF0000;
  52. text-decoration: underline;
  53. }
  54. SELECT {
  55. FONT-SIZE: 12px; FONT-FAMILY: "MS Shell Dlg"
  56. }
  57. FORM {
  58. MARGIN-TOP: 3px; FONT-SIZE: 12px; MARGIN-BOTTOM: 0px; FONT-FAMILY: "Tahoma", "MS Shell Dlg"
  59. }
  60. INPUT {
  61. FONT-SIZE: 12px; FONT-FAMILY: "Tahoma", "MS Shell Dlg"
  62. }
  63. </style>
  64. <script>
  65. function bbimg(o){
  66. var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
  67. return false;
  68. }
  69. </script>
  70. </head><body>
  71. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
  72. <tr>
  73. <td><div align="center"></div></td>
  74. </tr>
  75. <tr>
  76. <td align="center"><img src="<?=$r[pic_url]?>" border=0 onmousewheel="return bbimg(this)" onload="if(this.width>screen.width-500)this.style.width=screen.width-500;"></td>
  77. </tr>
  78. <tr>
  79. <td><div align="center">图片名称:
  80. <?=$r[title]?>
  81. </div></td>
  82. </tr>
  83. <tr>
  84. <td valign="top"> <div align="center">
  85. <table width="80%" border="0" align="center" cellpadding="3" cellspacing="0">
  86. <tr>
  87. <td>简介:<br>
  88. <?=nl2br($r[pictext])?>
  89. </td>
  90. </tr>
  91. </table>
  92. <br>
  93. </div></td>
  94. </tr>
  95. <tr>
  96. <td><div align="center">注:支持鼠标滚轮放大&amp;缩小图片.</div></td>
  97. </tr>
  98. <tr>
  99. <td><div align="center">
  100. <input type="button" name="Submit" value="关闭" onclick="window.close();">
  101. </div></td>
  102. </tr>
  103. </table>
  104. </body>
  105. </html>