inc.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. include "conn.php";
  3. checkLogin("系统管理");
  4. ?>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <title>管理区域</title>
  10. <link rel="stylesheet" href="css/common.css" type="text/css" />
  11. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  12. <script type="text/javascript" src="js/js.js"></script>
  13. <style>
  14. #jmbox{
  15. overflow:auto;zoom:1;margin-top:5px;
  16. }
  17. .jmlabel{
  18. float:left;
  19. width:70px;text-align:right;
  20. height:22px;line-height:22px;
  21. font-size:14px;font-weight:bold;
  22. color:#0099CC;padding-right:4px
  23. }
  24. .txt1{float:left;}
  25. .txtbox{width:820px;height:50px;color: #666;}
  26. .w726{
  27. width:726px;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <div id="man_zone">
  33. <?php
  34. $act = $_GET['act'] ?? '';
  35. if ($act == "save") {
  36. $webname = $_POST['webname'] ?? '';
  37. $keywords = $_POST['keywords'] ?? '';
  38. $description = $_POST['description'] ?? '';
  39. $indexwebname = $_POST['indexwebname'] ?? '';
  40. $copyright = $_POST['copyright'] ?? '';
  41. $query = "SELECT webname, keywords, description, indexwebname, copyright FROM inc WHERE id=1";
  42. $result = $conn->query($query);
  43. if ($result->num_rows > 0) {
  44. $sql = "UPDATE inc SET
  45. webname = '$webname',
  46. keywords = '$keywords',
  47. description = '$description',
  48. indexwebname = '$indexwebname',
  49. copyright = '$copyright'
  50. WHERE id = 1";
  51. } else {
  52. $sql = "INSERT INTO inc (webname, keywords, description, indexwebname, copyright)
  53. VALUES ('$webname', '$keywords', '$description', '$indexwebname', '$copyright')";
  54. }
  55. $conn->query($sql);
  56. echo "<script>alert('更新成功');top.location.href='index.php'</script>";
  57. exit;
  58. }
  59. ?>
  60. <form name="form1" method="post" action="?act=save">
  61. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  62. <tbody>
  63. <tr>
  64. <th width="15%">网站名称</th>
  65. <td><input type="text" id="webname" name="webname" value="<?php echo textEncode($webname); ?>" class="txt1" /></td>
  66. </tr>
  67. <tr>
  68. <th width="15%">网站首页title</th>
  69. <td><input type="text" id="indexwebname" name="indexwebname" value="<?php echo textEncode($indexwebname); ?>" class="txt1" /></td>
  70. </tr>
  71. <tr>
  72. <th width="15%">网站默认关键词</th>
  73. <td><input type="text" id="keywords" name="keywords" value="<?php echo textEncode($webkeywords); ?>" class="txt1" /></td>
  74. </tr>
  75. <tr>
  76. <th width="15%">网站默认描述</th>
  77. <td><input type="text" id="description" name="description" value="<?php echo textEncode($webdescription); ?>" class="txt1" /></td>
  78. </tr>
  79. <tr>
  80. <th width="15%">版权信息</th>
  81. <td><input type="text" id="copyright" name="copyright" value="<?php echo textEncode($copyright); ?>" class="txt1" /></td>
  82. </tr>
  83. <tr>
  84. <th></th>
  85. <td><input type="submit" name="save" id="save" value="确定" class="btn1" /> <input type="reset" name="save" id="save" value="重置" class="btn1" /></td>
  86. </tr>
  87. </tbody>
  88. </table>
  89. </form>
  90. </div>
  91. </body>
  92. </html>