LoadInM.php 2.2 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. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"table");
  20. $url="<a href=ListTable.php".$ecms_hashur['whehref'].">管理数据表</a>&nbsp;>&nbsp;导入系统模型";
  21. db_close();
  22. $empire=null;
  23. ?>
  24. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  25. <html>
  26. <head>
  27. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  28. <title>导入系统模型</title>
  29. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  30. </head>
  31. <body>
  32. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  33. <tr>
  34. <td>位置:
  35. <?=$url?>
  36. </td>
  37. </tr>
  38. </table>
  39. <form action="../ecmsmod.php" method="post" enctype="multipart/form-data" name="form1" onsubmit="return confirm('确认要导入?');">
  40. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  41. <?=$ecms_hashur['form']?>
  42. <tr>
  43. <td height="25" colspan="2" class="header">导入系统模型</td>
  44. </tr>
  45. <tr>
  46. <td width="28%" height="25" bgcolor="#FFFFFF">存放的数据表名:</td>
  47. <td width="72%" height="25" bgcolor="#FFFFFF"><strong><?=$dbtbpre?>ecms_</strong>
  48. <input name="tbname" type="text" id="tbname">
  49. </td>
  50. </tr>
  51. <tr>
  52. <td height="25" bgcolor="#FFFFFF">选择导入模型文件:</td>
  53. <td height="25" bgcolor="#FFFFFF"><input type="file" name="file">
  54. *.mod</td>
  55. </tr>
  56. <tr>
  57. <td height="25" bgcolor="#FFFFFF">&nbsp;</td>
  58. <td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="马上导入">
  59. <input type="reset" name="Submit2" value="重置">
  60. <input name="enews" type="hidden" id="enews" value="LoadInMod">
  61. </td>
  62. </tr>
  63. </table>
  64. </form>
  65. </body>
  66. </html>