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

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

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

    編輯頁面與添加新文章頁面類似不同的是需要將insert語句修改成update語句並且將數據顯示在表單中相應的表單代碼如下所示
    <form method=post name=form action=<?php echo $editFormAction; ?>>
        <table align=center>
          <tr valign=baseline>
            <td nowrap align=right>文章標題</td>
            <td><div align=left>
              <input type=text name=title value=<?php echo $row_rs_articles
    [title]; ?> size=>
            </div></td>
          </tr>
          <tr valign=baseline>
            <td nowrap align=right valign=top>文章內容</td>
            <td>
              <div align=left>
                <textarea name=content cols= rows=>
    <?php echo $row_rs_articles[content]; ?></textarea>
              </div></td>
          </tr>
          <tr valign=baseline>
            <td nowrap align=right>文章分類</td>
            <td><div align=left>
              <p>
                <select name=type_id>
                  <?php
    do {
    ?>
                  <option value=<?php echo $row_rs_types[type_id]?>
     <?php if($row_rs_types[type_id]==$row_rs_articles[type_id]) { echo
    selected;} ?>>
    <?php echo $row_rs_types[type_name]?></option>
                  <?php
    } while ($row_rs_types = mysql_fetch_assoc($rs_types));
      $rows = mysql_num_rows($rs_types);
      if($rows > ) {
          mysql_data_seek($rs_types );
          $row_rs_types = mysql_fetch_assoc($rs_types);
      }
    ?>
                </select>  
                </p>
            </div></td>
          </tr>
          <tr valign=baseline>
            <td colspan= align=right nowrap><div align=center>
                <input type=submit value=提交>
                <input type=reset name=Reset value=重置>
            </div></td>
          </tr>
        </table>
        <input type=hidden name=MM_update value=form>
        <input type=hidden name=article_id value=<?php echo $row_rs_articles
    [article_id]; ?>>

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/21387.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.