/trunk/PHPnew/admin/admin_news_class.php

http://mycaptain.googlecode.com/ · PHP · 102 lines · 86 code · 16 blank · 0 comment · 5 complexity · 2fa3c4dd816230156cbf734eba5605f3 MD5 · raw file

  1. <?php
  2. include_once ('admin_global.php');
  3. $r=$db->Get_user_shell_check($uid, $shell);
  4. if(isset($_POST['into_class'])){
  5. $db->query("INSERT INTO `news_php100`.`p_newsclass` (`id`, `f_id`, `name`, `keywrod`, `remark`)" .
  6. " VALUES (NULL, '$_POST[f_id]', '$_POST[name]', '', '')");
  7. $db->Get_admin_msg("admin_news_class.php","????????");
  8. }
  9. if(!empty($_GET['del'])){
  10. $db->query("DELETE FROM `p_newsclass` WHERE `id` = '$_GET[del]' LIMIT 1;");
  11. $db->Get_admin_msg("admin_news_class.php","????");
  12. }
  13. if(isset($_POST['update_class'])){
  14. $db->query("update `p_newsclass` set `name`='$_POST[name]' WHERE `id` = '$_POST[id]' LIMIT 1;");
  15. $db->Get_admin_msg("admin_news_class.php","????");
  16. }
  17. ?>
  18. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  19. <HTML><HEAD><TITLE>????</TITLE>
  20. <META http-equiv=Content-Type content="text/html; charset=gb2312">
  21. <META content=Alan name=Author><LINK rev=MADE
  22. href="mailto:haowubai@hotmail.com"><LINK href="images/private.css"
  23. type=text/css rel=stylesheet>
  24. <META content="MSHTML 6.00.6000.16890" name=GENERATOR></HEAD>
  25. <BODY>
  26. <TABLE class=navi cellSpacing=1 align=center border=0>
  27. <TBODY>
  28. <TR>
  29. <TH>?? >> ????</TH></TR></TBODY></TABLE><BR>
  30. <table border=0 cellspacing=1 align=center class=form>
  31. <tr>
  32. <th colspan="2">????</th>
  33. </tr>
  34. <form action="" method="post" >
  35. <tr>
  36. <td colspan="2" align="center" height='30'>
  37. <select name="f_id">
  38. <option value="0">????</option>
  39. <?php
  40. $query=$db->findall("p_newsclass where f_id=0");
  41. while ($row=$db->fetch_array($query)) {
  42. $news_class_arr[$row['id']]=$row['name'];
  43. echo "<option value=\"$row[id]\">$row[name]</option>";
  44. }
  45. ?>
  46. </select>
  47. <input type="text" name="name" value="" />
  48. <input type="submit" name="into_class" value=" ???? "/>
  49. </td>
  50. </form>
  51. </tr>
  52. </table>
  53. <br>
  54. <table border=0 cellspacing=1 align=center class=form>
  55. <tr>
  56. <th>????</th>
  57. </tr>
  58. <?php
  59. foreach($news_class_arr as $id=>$val){
  60. ?>
  61. <tr>
  62. <form action="" method="post">
  63. <td>
  64. <input type="hidden" name="id" value="<?php echo $id?>" />
  65. <input type="text" name="name" value="<?php echo $val?>"/>
  66. <input type="submit" name="update_class" value="??"/>
  67. <input type="button" value="??" onclick="location.href='?del=<?php echo $id?>'"/>
  68. </form>
  69. <?php
  70. $query_fid=$db->findall("p_newsclass where f_id=$id");
  71. while ($row_fid=$db->fetch_array($query_fid)) {
  72. ?>
  73. <form action="" method="post">
  74. &nbsp;&nbsp;&nbsp;?<input type="hidden" name="id" value="<?php echo $row_fid['id']?>" />
  75. <input type="text" name="name" value="<?php echo $row_fid['name']?>"/>
  76. <input type="submit" name="update_class" value="??"/>
  77. <input type="button" value="??" onclick="location.href='?del=<?php echo $row_fid['id']?>'"/>
  78. </form>
  79. <?php } ?>
  80. </td>
  81. </tr>
  82. <?php
  83. }
  84. ?>
  85. </table>
  86. </BODY></HTML>