AddTable.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"table");
  20. $enews=RepPostStr($_GET['enews'],1);
  21. $url="<a href=ListTable.php".$ecms_hashur['whehref'].">管理数据表</a>&nbsp;>&nbsp;新建数据表";
  22. //修改
  23. if($enews=="EditTable")
  24. {
  25. $tid=(int)$_GET['tid'];
  26. $url="<a href=ListTable.php".$ecms_hashur['whehref'].">管理数据表</a>&nbsp;>&nbsp;修改数据表";
  27. $r=$empire->fetch1("select tid,tbname,tname,tsay,yhid,intb from {$dbtbpre}enewstable where tid='$tid'");
  28. }
  29. //优化方案
  30. $yh_options='';
  31. $yhsql=$empire->query("select id,yhname from {$dbtbpre}enewsyh order by id");
  32. while($yhr=$empire->fetch($yhsql))
  33. {
  34. $select='';
  35. if($r[yhid]==$yhr[id])
  36. {
  37. $select=' selected';
  38. }
  39. $yh_options.="<option value='".$yhr[id]."'".$select.">".$yhr[yhname]."</option>";
  40. }
  41. db_close();
  42. $empire=null;
  43. ?>
  44. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  45. <html>
  46. <head>
  47. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  48. <title>新建数据表</title>
  49. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  50. </head>
  51. <body>
  52. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  53. <tr>
  54. <td>位置:
  55. <?=$url?>
  56. </td>
  57. </tr>
  58. </table>
  59. <form name="form1" method="post" action="../ecmsmod.php">
  60. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  61. <?=$ecms_hashur['form']?>
  62. <tr>
  63. <td height="25" colspan="2" class="header">建立/修改数据表</td>
  64. </tr>
  65. <tr>
  66. <td width="23%" height="25" bgcolor="#F8F8F8">数据表名:</td>
  67. <td width="77%" height="25" bgcolor="#FFFFFF"><strong>
  68. <?=$dbtbpre?>
  69. ecms_</strong> <input name="tbname" type="text" id="tbname" value="<?=$r[tbname]?>">
  70. *<font color="#666666">(如:news,只能由字母、数字组成)</font></td>
  71. </tr>
  72. <tr>
  73. <td height="25" bgcolor="#F8F8F8">数据表标识:</td>
  74. <td height="25" bgcolor="#FFFFFF"> <input name="tname" type="text" id="tname" value="<?=$r[tname]?>" size="38">
  75. *<font color="#666666">(如:新闻数据表)</font></td>
  76. </tr>
  77. <tr>
  78. <td height="25" bgcolor="#F8F8F8">使用优化方案:</td>
  79. <td height="25" bgcolor="#FFFFFF"><select name="yhid" id="yhid">
  80. <option name="0">不使用</option>
  81. <?=$yh_options?>
  82. </select> <input type="button" name="Submit63" value="管理优化方案" onclick="window.open('../db/ListYh.php<?=$ecms_hashur['whehref']?>');"></td>
  83. </tr>
  84. <tr>
  85. <td height="25" bgcolor="#F8F8F8">是否内部表:</td>
  86. <td height="25" bgcolor="#FFFFFF"><input type="radio" name="intb" value="0"<?=$r['intb']==0?' checked':''?>>
  87. 正常表
  88. <input type="radio" name="intb" value="1"<?=$r['intb']==1?' checked':''?>>
  89. 内部表 <font color="#666666">(内部表前台不显示和生成,只有后台才能查看)</font></td>
  90. </tr>
  91. <tr>
  92. <td height="25" valign="top" bgcolor="#F8F8F8">备注:</td>
  93. <td height="25" bgcolor="#FFFFFF"> <textarea name="tsay" cols="70" rows="8" id="tsay"><?=stripSlashes($r[tsay])?></textarea></td>
  94. </tr>
  95. <tr>
  96. <td height="25" bgcolor="#F8F8F8">&nbsp;</td>
  97. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="提交">
  98. <input type="reset" name="Submit2" value="重置"> <input name="tid" type="hidden" id="tid" value="<?=$tid?>">
  99. <input name="enews" type="hidden" id="enews" value="<?=$enews?>"> <input name="oldtbname" type="hidden" id="oldtbname" value="<?=$r[tbname]?>"></td>
  100. </tr>
  101. </table>
  102. </form>
  103. </body>
  104. </html>