php応用Ajax技術検出ユーザ名


1.Ajax開発フレームワークを構築し、コードは以下の通りである.
<script language="javascript">
var http_request = false;
function createRequest(url) {
    //        XMLHttpRequest  
    http_request = false;
    if (window.XMLHttpRequest) {                                        //Mozilla      
        http_request = new XMLHttpRequest();
        if (http_request.overrideMimeType) {
            http_request.overrideMimeType("text/xml");
        }
    } else if (window.ActiveXObject) {                              //IE   
        try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try {
                http_request = new ActiveXObject("Microsoft.XMLHTTP");
           } catch (e) {}
        }
    }
    if (!http_request) {
        alert("    XMLHTTP  !");
        return false;
    }
    http_request.onreadystatechange = alertContents;                     //      
                                                                                              
    http_request.open("GET", url, true);                                 //  HTTP  
    http_request.send(null);
}
function alertContents() {                                               //          
    if (http_request.readyState == 4) {
        if (http_request.status == 200) {
            alert(http_request.responseText);
        } else {
            alert('          ');
        }
    }
}
</script>

2.JavaScriptのカスタム関数checkname()を作成する.ユーザ名が空かどうかを検出するために使用され、ユーザ名が空でない場合、createRequest()メソッドを呼び出して、ユーザ名が存在するかどうかを検出する要求を送信します.コードは次のとおりです.
function checkname()
{
    var username = form1.user.value;
    if (username=="")
    {
        window.alert ("      ");       
    }
    else
    {
                                                                             
createRequest('action/checkname.php?username='+username+'&nocache='+new Date().getTime());
    }
}

3.ページに「ユーザー名ハイパーリンクの検出」を追加
<td width="93" class="ziti2"><a href="#" onclick="checkname()">[     ]</a></td>

4.checknameを作成する.php処理ページ、コードは以下の通りです
<?php
header("Content-type= text/html; charset=utf8");
include "../conn/conn.php";
$GB2312string=iconv( 'UTF-8', 'gb2312//IGNORE' , $RequestAjaxString);           //Ajax   encodeURIComponent           
$username = $_GET[username];
$sql=mysql_query("select * from user where username='".$username."'")or die (mysql_error());
$info=mysql_fetch_array($sql);
if($info)
{
    echo "   !   [".$username."]     !";
}
else
{
    echo "   !   [".$username."]     !";
}
?>

初めてPHPを学んで、学習の実践の中で問題を記録して、技巧、コードは問題があるあるいはその他の意見があって提出を歓迎して、共に進歩します~