本程序包括三个文件
reg.html 用户注册html页面
reg.php php处理代码
conn.php 数据库教程连接文件
reg.html代码
代码如下 | 复制代码 |
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>php+ajax用户注册验证用户是否在存(php mysql完整实例)</title> <style type="text/css教程"> body{ font-size:12px; text-align:center; } .text{ width:180px; height:12px; } p{ width:600px; height:20px; line-height:20px; text-align:left; } p label{ display:block; width:80px; height:20px; line-height:20px; float:left; text-align:right; } p span{ margin-left:10px; } </style> </head> <body> <script language="网页特效"> function createxmlhttprequest(){ var xmlhttp; if(window.activexobject){ xmlhttp = new activexobject("microsoft.xmlhttp"); }else if(window.xmlhttprequest){ xmlhttp = new xmlhttprequest(); } return xmlhttp; } function checkname(){ |
reg.php文件
代码如下 | 复制代码 |
<?php include("conn.php"); if(strlen($name)>0){ |
conn.php数据库文件
代码如下 | 复制代码 |
<?php /* created on 下午12:08:25*/ $conn=@mysql_connect("localhost","root","")or die("111cn.net提示你:连接失败!"); mysql_select_db("reg",$conn); mysql_query("set names 'gbk'"); ?> |
registration数据表结构
-- phpmyadmin sql dump
-- version 2.11.2.1
-- http://www.phpmyadmin.net
--
-- 主机: localhost
-- 生成日期: 2009 年 05 月 20 日 05:29
-- 服务器版本: 5.0.45
-- php 版本: 5.2.5
set sql_mode="no_auto_value_on_zero";
--
-- 数据库: `reg`
--
-- --------------------------------------------------------
--
-- 表的结构 `registration` phpmyadmin导入数据
--
代码如下 | 复制代码 |
create table `registration` ( `id` tinyint(6) not null auto_increment, `username` varchar(14) not null comment '注册用户名', `userpwd` varchar(14) not null comment '注册密码', primary key (`id`) ) engine=innodb default charset=gb2312 auto_increment=6 ; -- |
-- 导出表中的数据 `registration`
--
代码如下 | 复制代码 |
insert into `registration` (`id`, `username`, `userpwd`) values (1, 'admin', 'admin888'), (2, 'lyn', '111cn.net'), (3, 'xiaot', 'xiaot'), (4, 'xiaoe', 'xiaoe'), (5, '我爱www.111cn.net', '5201314110'); |