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

PHP網絡開發詳解:注冊頁面的實現[2]

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

    //插入用戶信息
    if ((isset($_POST[MM_insert])) && ($_POST[MM_insert] == form) &&
    ($_POST[password] == $_POST[password_cfm]))         //檢查表單的有效性
    {
      $insertSQL = sprintf(INSERT INTO users (username password userflag
    last_upt_id) VALUES (%s %s user %s)         //准備SQL語句
                           GetSQLValueString($_POST[username] text)
                           GetSQLValueString($_POST[password] text)
                           GetSQLValueString($_POST[username] text));
      mysql_select_db($database_conn $conn);           //連接數據庫
      $Result = mysql_query($insertSQL $conn) or die(mysql_error());                    //執行SQL語句
      $insertGoTo = indexphp;                    //首頁文件
      if (isset($_SERVER[QUERY_STRING]))              //讀取當前參數
      {
        $insertGoTo = (strpos($insertGoTo ?)) ? & : ?;
        $insertGoTo = $_SERVER[QUERY_STRING];
      }
      header(sprintf(Location: %s $insertGoTo)); //跳轉頁面到首頁
    }
    //檢查網站是否關閉
    if($row_rs_config[available_indc]==) {
      die(網站維護中 暫時無法訪問);
    }
    if($row_rs_config[reg_indc]==) {
      die(網站注冊已經關閉);
    }
    //調用模板文件
    include(templates\\$row_rs_config[folder_name]\\regincphp);
    //關閉數據庫連接
    mysql_free_result($rs_config);
    ?>

    運行結果如圖所示

http://developcsaicn/web/images/jpg>
  注冊新用戶

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


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