熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP網絡開發詳解:文章管理頁面的實現[5]

2022-06-13   來源: PHP編程 
    ——此文章摘自《完全手冊PHP網絡開發詳解》定價 特價 詳細>>http://tracklinktechcn/?m_id=dangdang&a_id=A&l=&l_type= width= height= border= nosave>

    </form>

    這裡通過循環types表中的所有記錄來判定下拉框的當前選擇並且通過隱藏框來存儲當前文章的編號

    刪除文章頁面通過執行一個簡單的delete語句來完成文章內容的刪除執行後跳轉回文章列表頁面具體代碼如下所示
    <?php
    if ((isset($_GET[article_id])) && ($_GET[article_id] != ))
    {
      $deleteSQL = sprintf(DELETE FROM articles WHERE article_id=%s
                           GetSQLValueString($_GET[article_id] int));
      mysql_select_db($database_conn $conn);
      $Result = mysql_query($deleteSQL $conn) or die(mysql_error());
      $deleteGoTo = admin_listphp;
      header(sprintf(Location: %s $deleteGoTo));
    }
    ?>

    審核文章頁面與刪除文章頁面類似不同的是其SQL語句如下所示
    <?php
      $checkSQL = sprintf(UPDATE articles SET checked_indc=checked_indc
    last_upt_id=%s WHERE article_id=%s
                           GetSQLValueString($_SESSION[MM_Username] text)
                        GetSQLValueString($_GET[article_id] int));
    ?>

    這裡使用checked_indc=checked_indc實現審核標志的轉換如果當前文章為未審核狀態則checked_indc為更新後 checked_indc將為如果當前文章為已審核狀態則checked_indc為更新後checked_indc將為

right>[http://developcsaicn/web/htm>]  [http://developcsaicn/web/htm>]  [http://developcsaicn/web/htm>]  [http://developcsaicn/web/htm>]  []  


From:http://tw.wingwit.com/Article/program/PHP/201311/21383.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.