Home > Article > Backend Development > PHP registration page code (mysql+php)_PHP tutorial
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('非常抱歉,系统发生故障!');
}
}
?>
create table `hl`.`hl_member` (
`id` int( 4 ) not null auto_increment comment 'automatic encoding',
`username` varchar( 100 ) not null comment 'username',
`password` varchar( 200 ) not null comment 'user password',
`answer` varchar( 100 ) not null comment 'Secret answer',
`question` varchar( 100 ) not null comment 'Secret question',
`email` varchar( 100 ) not null comment 'email',
`realname` varchar( 200 ) not null comment 'Login restriction',
`birthday` date not null comment 'birthday',
`telephone` varchar( 20 ) not null comment 'phone number',
`qq` varchar( 15 ) not null comment 'qq number',
`count` int( 1 ) not null comment 'Login limit',
`active` int( 1 ) not null comment 'whether to activate',
primary key ( `id` )
) engine = innodb character set gb2312 collate gb2312_chinese_ci;