//[原創]ajax 實現用戶注冊功能教程三
本教程由本站原創,轉載請注明來處
作者:www.111cn.net
QQ:271728967
//
現在到了第三步,我們來寫type.php文件,這個文件的作用是判斷用戶名是否存在,再然後數據給用戶.
<?php
header("Content-type:text/html;charset=gb2312");//為了不讓其出現亂碼所以把文檔編碼設置為gb2312
$xm=Strreplace(isset($_GET['txt'])?$_GET['txt']:'null');//取得用戶名
if(preg_match("/^[".chr(0xa1)."-".chr(0xff)."]+$/", $xm)){//判斷用戶名第一個是否為漢字,
echo("<div id='phperblog_showinfo_red'>對不起,不能使用中文作為用戶名! </div>");
exit();
}
if($xm=='null' || $xm=='' || strlen($xm)>10 || strlen($xm)<3){//判斷用戶名的合法性
echo("<div id='phperblog_showinfo_red'>對不起,你輸入的用戶名不合法,用戶由3-10Aa_zZ及數字組成! </div>");
exit();
}else{
$result=mysql_query("select uname from tablename where uname='$xm' ") or die('Error !'."Error system busy.....plase wait!");
if(!mysql_num_rows($result)){
echo("<div id='phperblog_showinfo_reg'>恭喜你!用戶名".$xm."還未注冊,你可以注冊! </div>");
}else{
echo("<div id='phperblog_showinfo_red'>對不起,用戶己注冊請選擇其它名稱!</div>");
}
}
?>