程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php注冊頁面代碼(mysql+php)

php注冊頁面代碼(mysql+php)

編輯:關於PHP編程

php注冊頁面代碼(mysql+php) 這是一款利用mysql php實例的用戶注冊代碼,比較簡單,就是把html 提交過來的數據保存到mysql數據庫。

php教程注冊頁面代碼(mysql教程+php)
這是一款利用mysql php實例的用戶注冊代碼,比較簡單,就是把html
提交過來的數據保存到mysql數據庫教程。
*/
 include('global.php');

 if($_post['sub']){
  $user  = $_post['username'];
  $pwd   = md5($_post['password1'].$user);
  $email = $_post['email'];
   $q = $mysql->query("insert into `hl`.`hl_member`(`id`,`username`,`password`,`email`)values (null,'$user','$pwd','$email');");
  if($q){
   setcookie('login',$user);
   $prompt_msg->p('恭喜您,親愛的會員,您已經注冊成功!','index.php','現在去首頁。','http://www.bKjia.c0m','先去論壇逛逛!');
  }else{
   $prompt_msg->p('非常抱歉,系統發生故障!');
  }
 }
?>

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.bKjia.c0m/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title></title>
<link rel="stylesheet" type="text/css教程" href="css/reg_log.css" />

</head>

<body>
<form id="myform" name="myform" method="post" action="register.php">
<div id="top">注冊&nbsp;<a href="login.php">登錄</a></div>
<div id="content">
 <div class="c1">請填寫以下必填信息完成注冊</div>
    <div class="c2"><span>帶紅色*的都是必填項目,若填寫不全將無法注冊</span></div>
    <div class="cinput"><dl>
     <dt>用戶名<font color="red">*</font></dt>
        <dd><input id="username" name="username" type="text" maxlength="12" /></dd>
        <dd id="user_prompt" class="prompt">大小寫英文字母、漢字、數字、下劃線組成的長度 3-12 個字節以內</dd>
    </dl></div>
    <div class="cinput"><dl>
     <dt>密&nbsp;&nbsp;碼<font color="red">*</font></dt>
        <dd><input id="password1" name="password1" type="password" maxlength="16" /></dd>
        <dd id="pwd1_prompt" class="prompt">最小長度:6 最大長度:16,僅限字母、數字及_,字母區分大小寫</dd>
    </dl></div>         
    <!--檢測密碼強度-->
 <div class="cinput" style="padding-bottom:0px;"><!--ie6 hack-->
     <div class="chkpwd">
         <span id="cp1_prompt" class="cp1"></span><span id="cp2_prompt" class="cp2"></span>
            <span id="cp3_prompt" class="cp3"></span>
     </div>
    </div>
    <div class="cinput" style="padding-top:0px;"><dl>
     <dt>確認密碼<font color="red">*</font></dt>
        <dd><input id="password2" name="password2" type="password" maxlength="16" /></dd>
        <dd id="pwd2_prompt" class="prompt">請再輸入一遍您上面填寫的密碼</dd>
    </dl></div>
    <div class="cinput"><dl>
     <dt>email<font color="red">*</font></dt>
        <dd><input id="email" name="email" type="text" /></dd>
        <dd id="email_prompt" class="prompt">請填寫真實並且最常用的郵箱</dd>
    </dl></div>
    <div style="clear:both"></div>
</div>
<div id="bottom">
 <input class="btn1" type="submit" name="sub" value="提交注冊" id="checkall" />
 <input class="btn2" type="reset" name="reset" value="重置" onclick="return sub(this.form)" />
</div>
</form>
</body>
</html>

數據庫結構

 create table `hl`.`hl_member` (
`id` int( 4 ) not null auto_increment comment '自動編碼',
`username` varchar( 100 ) not null comment '用戶名稱',
`password` varchar( 200 ) not null comment '用戶密碼',
`answer` varchar( 100 ) not null comment '密保答案',
`question` varchar( 100 ) not null comment '密保問題',
`email` varchar( 100 ) not null comment 'email',
`realname` varchar( 200 ) not null comment '登錄限制',
`birthday` date not null comment '出生日期',
`telephone` varchar( 20 ) not null comment '電話號碼',
`qq` varchar( 15 ) not null comment 'qq號碼',
`count` int( 1 ) not null comment '登錄限制',
`active` int( 1 ) not null comment '是否激活',
primary key ( `id` )
) engine = innodb character set gb2312 collate gb2312_chinese_ci;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved