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

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

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

    注冊頁面實際上就是對users表添加記錄需要注意的是注冊頁面往往需要驗證用戶兩次輸入的密碼是否相同其流程如圖所示

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

    具體代碼如下所示
    <! 注冊頁面文件regphp >
    <?php require_once(Connections/connphp); ?>
    <?php
    //連接數據庫
    mysql_select_db($database_conn $conn);
    $query_rs_config = SELECT * FROM config templates WHERE configtemplate_
    id=templatestemplate_id;
    $rs_config = mysql_query($query_rs_config $conn) or die(mysql_error());
    $row_rs_config = mysql_fetch_assoc($rs_config);
    $totalRows_rs_config = mysql_num_rows($rs_config);
    //文本字符串轉換
    function GetSQLValueString($theValue $theType $theDefinedValue =
    $theNotDefinedValue = )
    {
      $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
      switch ($theType)
      {
        case text:
          $theValue = ($theValue != ) ? $theValue : NULL;
          break;  
      }
      return $theValue;
    }
    //兩次密碼輸入確認
    if($_POST[password] != $_POST[password_cfm]) {
      echo <script>alert(錯誤兩次密碼輸入不一致!);</script>;
    }

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


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