ShowVar.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $modid=(int)$_GET['modid'];
  19. $mr=$empire->fetch1("select mid,mname,tempvar from {$dbtbpre}enewsmod where mid='$modid'");
  20. db_close();
  21. $empire=null;
  22. ?>
  23. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  24. <html>
  25. <head>
  26. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  27. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  28. <title>模型变量列表</title>
  29. </head>
  30. <body>
  31. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  32. <tr>
  33. <td>位置:模型变量列表</td>
  34. </tr>
  35. </table>
  36. <br>
  37. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="tableborder" id=m<?=$mr[mid]?>>
  38. <tr class="header">
  39. <td><div align="center">
  40. <?=$mr[mname]?>
  41. </div></td>
  42. </tr>
  43. <tr>
  44. <td bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="1" cellpadding="3">
  45. <?
  46. $record="<!--record-->";
  47. $field="<!--field--->";
  48. $r=explode($record,$mr[tempvar]);
  49. $count=count($r)-1;
  50. for($i=0;$i<$count;$i++)
  51. {
  52. $r1=explode($field,$r[$i]);
  53. ?>
  54. <tr>
  55. <td width="35%"><b><?=$r1[0]?></b></td>
  56. <td width="65%"><input name="textfield" type="text" value="[!--<?=$r1[1]?>--]"></td>
  57. </tr>
  58. <?
  59. }
  60. ?>
  61. </table></td>
  62. </tr>
  63. </table>
  64. </body>
  65. </html>