ホームページ  >  記事  >  バックエンド開発  >  php ajax部分更新登録検証の例

php ajax部分更新登録検証の例

WBOY
WBOYオリジナル
2016-07-25 09:00:18999ブラウズ
  1. // JavaScript Document

  2. var xmlHttp;
  3. function S_xmlhttprequest()
  4. {
  5. xmlHttp=null;
  6. if (window.XMLHttpRequest)
  7. {// IE7、Firefox、Opera などのコード.
  8. xmlHttp=new XMLHttpRequest();
  9. }
  10. else if (window.ActiveXObject)
  11. {// IE6、IE5 のコード
  12. xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  13. }
  14. }

  15. function getName(name)

  16. {

  17. if(name = document.myform.name.value)

  18. {
  19. S_xmlhttprequest();
  20. xmlHttp.open("get", "data.php?name="+name,true);
  21. xmlHttp.onreadystatechange = byname;
  22. xmlHttp.send(null);
  23. }

  24. }

  25. < p>function byname()
  26. {
  27. if(xmlHttp.readyState ==1)
  28. {
  29. document.getElementById('name').innerHTML = "loading.... ";
  30. }
  31. if(xmlHttp.readyState == 4)
  32. {
  33. if(xmlHttp.status == 200)
  34. {
  35. var name = xmlHttp.responseText;
  36. document.getElementById('name').innerHTML = name;
  37. }
  38. }
  39. }
  40. function getEmail(email)
  41. {
  42. var email = document.myform.email.value;
  43. if(email =="")
  44. {
  45. alert("用户名不可空");
  46. document。 myform.email.focus();
  47. return false;
  48. }
  49. else
  50. {
  51. S_xmlhttprequest();
  52. xmlHttp.open("get","data.php?email="+email,true);
  53. xmlHttp.onreadystatechange = byemail;
  54. xmlHttp.send(null);
  55. }

  56. }

  57. function byemail()
  58. {
  59. if(xmlHttp.readyState ==1)
  60. {
  61. document.getElementById('email ').innerHTML = "読み込み中...";
  62. }
  63. if(xmlHttp.readyState == 4)
  64. {
  65. if(xmlHttp.status == 200)
  66. {
  67. var email = xmlHttp.responseText;
  68. document.getElementById('email').innerHTML = email;
  69. }
  70. }
  71. }

复制帽

2、register.php文件

  1. 注册页面_bbs.it-home.org
  2. < body>
  3. 复制コード

    3、data.php页面、ajax認証データベース用。

    1. sleep(1);
    2. $connt = mysql_connect("localhost","root","123456");
    3. mysql_select_db('test',$connt );
    4. mysql_query("set names 'gb2312'");
    5. if($_GET['name'])
    6. {
    7. $name = $_GET['name'];
    8. $sql = "select * from test where name='$name'";
    9. $restul = mysql_query($sql);
    10. $array = mysql_fetch_row($restul);
    11. // print_r($array);
    12. if(is_array($array))
    13. {
    14. echo "该用户名已经存在";
    15. }
    16. else
    17. {
    18. echo "该用户名可";
    19. }
    20. }
    21. if($_GET['email'])
    22. {
    23. $name = $_GET['email'];
    24. $sql = "select * from test where email='$email'";
    25. $restul = mysql_query($ sql);
    26. $array = mysql_fetch_row($restul);
    27. // print_r($array);
    28. if(is_array($array))
    29. {
    30. echo "该邮箱已存在";
    31. }
    32. else
    33. {
    34. echo "该邮箱使用可能";
    35. }
    36. }
    37. ?>
    复制代

    これにより、ユーザーによる局所的な新しい機能が即座に実現されます。



    用户名:
    *用户名必須*
    邮箱:< ;div id="email">*邮箱必須*
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。