本教程是一款利用了ajax php在用戶輸入完用戶名後,就會發送請求給php程序,然後查詢數據,判斷用戶要注冊的用戶名是不是己經注冊或存在重復了,及時的返回提示信息,以免用戶填寫了一大填表單後,突然提供用戶名不能注冊己被注冊了,這樣體驗就不好了。本教程就是專門解決這個問題了,能快速的告訴你要注冊的用戶名是否可以注冊。
ajax+php教程驗證用戶名重復代碼實例
<?
/*
本教程是一款利用了ajax php在用戶輸入完用戶名後,就會發送請求給php程序,然後查詢數據,判斷用戶要注冊的用戶名是不是己經注冊或存在重復了,及時的返回提示信息,以免用戶填寫了一大填表單後,突然提供用戶名不能注冊己被注冊了,這樣體驗就不好了。本教程就是專門解決這個問題了,能快速的告訴你要注冊的用戶名是否可以注冊。
*/
?>
<!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>ajax+php驗證用戶名重復代碼實例</title>
<script language="網頁特效">
function createxmlhttprequest(){//創建xmlhttprequest對象
if(window.activexobject){//ie
try {
return new activexobject("microsoft.xmlhttp");
} catch(e){
return;
}
}else if(window.xmlhttprequest){//mozilla,firefox
try {
return new xmlhttprequest();
} catch(e){
return;
}
}
}function getrenews(value){//主調函數
var xmlhttp=createxmlhttprequest();
var url = "13.php?action=check&title="+value+"&mt="+math.random(300000);
if (value==""){
return false ;
}
if (xmlhttp){
callback = getreadystatehandler(xmlhttp);
xmlhttp.onreadystatechange = callback;
xmlhttp.open("get", url,true);
xmlhttp.send(null);
}
}function getreadystatehandler(xmlhttp){//服務器返回後處理函數
return function (){
if(xmlhttp.readystate == 4){
if(xmlhttp.status == 200){
alert(xmlhttp.responsetext);
if (xmlhttp.responsetext==1){
document.getelementbyid("checkid").innerhtml="<font color='red'>對不起,用戶名己存在!</font>";
}else{
document.getelementbyid("checkid").innerhtml="可以注冊";
}
}
}
}
}</script>
</head>
<body>
<table width="75%" border="0">
<tr>
<td width="12%">輸入用戶名</td>
<td width="36%">
<input type="text" name="username" id="username" onblur="getrenews(this.value);" />
</td>
<td width="52%" id="checkid"> </td>
</tr>
</table>
</body>
</html>
把下面代碼保存忝13.php
<?
checkusername();
function checkusername()
{
$title = trim($_get['title']);
if( empty( $title ) )
{
return false;
}
else
{
mysql教程_connect('localhost','root','root');
mysql_select_db('test');
mysql_query("set names 'gb2312'");
$sql = "select * from cn_user where username ='$title'";
$row = mysql_query($sql);
if( mysql_num_rows( $row ) )
{
echo 1;
}
else
{
return null;
}
}
}
/*
create table `test`.`cn_user` (
`id` int not null auto_increment ,
`username` varchar( 20 ) not null ,
`times` date null ,
primary key ( `id` )
) engine = myisam
插入數據
insert into `test`.`cn_user` (
`id` ,
`username` ,
`times`
)
values (
null , 'jimmy', null
), (
null , 'www.bKjia.c0m', null
);
*/
?>