[原創]ajax 實現使用者註冊功能教程三

來源:互聯網
上載者:User

//[原創]ajax 實現使用者註冊功能教程三

本教程由本站原創,轉載請註明來處

作者:www.111cn.net

郵箱:drise@163.com

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>");
 }
}
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.