최신 웹 개발 튜토리얼
 

PHP - AJAX 및 PHP


AJAX는 더 대화 형 응용 프로그램을 만드는 데 사용됩니다.


AJAX PHP 예

다음의 예는 웹 페이지는 입력 필드에 사용자 형식 문자 동안 웹 서버와 통신 할 수있는 방법을 보여줍니다 :

Start typing a name in the input field below:

First name:

Suggestions:


예 설명

사용자 타입 입력 필드에 문자라는 기능은 위의 예에서, " showHint() " 이 실행된다.

이 기능은 onKeyUp에 이벤트에 의해 트리거됩니다.

여기에 HTML 코드는 다음과 같습니다

<html>
<head>
<script>
function showHint(str) {
    if (str.length == 0) {
        document.getElementById("txtHint").innerHTML = "";
        return;
    } else {
        var xmlhttp = new XMLHttpRequest();
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
            }
        };
        xmlhttp.open("GET", "gethint.php?q=" + str, true);
        xmlhttp.send();
    }
}
</script>
</head>
<body>

<p><b>Start typing a name in the input field below:</b></p>
<form>
First name: <input type="text" onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span id="txtHint"></span></p>
</body>
</html>
»실행 예

코드 설명 :

입력 필드가 비어있는 경우, 최초로 확인 (str.length == 0) . 이 경우, txtHint 자리의 내용을 지우고 기능을 종료합니다.

입력 필드가 비어 있지 않은 경우, 다음을 수행하십시오

  • XMLHttpRequest를 객체를 생성
  • 서버 응답이 준비되었을 때 실행되는 함수를 만듭니다
  • PHP 파일로 요청을 보내기 (gethint.php) 서버
  • 그 Q 매개 변수가 gethint.php 추가주의? Q = "+ str을
  • 이 STR 변수는 입력 필드의 내용을 보유

PHP 파일 - "gethint.php"

PHP의 파일 이름들의 어레이를 검사하고, 대응하는 리턴 name(s) 브라우저를 행 :

<?php
// Array with names
$a[] = "Anna";
$a[] = "Brittany";
$a[] = "Cinderella";
$a[] = "Diana";
$a[] = "Eva";
$a[] = "Fiona";
$a[] = "Gunda";
$a[] = "Hege";
$a[] = "Inga";
$a[] = "Johanna";
$a[] = "Kitty";
$a[] = "Linda";
$a[] = "Nina";
$a[] = "Ophelia";
$a[] = "Petunia";
$a[] = "Amanda";
$a[] = "Raquel";
$a[] = "Cindy";
$a[] = "Doris";
$a[] = "Eve";
$a[] = "Evita";
$a[] = "Sunniva";
$a[] = "Tove";
$a[] = "Unni";
$a[] = "Violet";
$a[] = "Liza";
$a[] = "Elizabeth";
$a[] = "Ellen";
$a[] = "Wenche";
$a[] = "Vicky";

// get the q parameter from URL
$q = $_REQUEST["q"];

$hint = "";

// lookup all hints from array if $q is different from ""
if ($q !== "") {
    $q = strtolower($q);
    $len=strlen($q);
    foreach($a as $name) {
        if (stristr($q, substr($name, 0, $len))) {
            if ($hint === "") {
                $hint = $name;
            } else {
                $hint .= ", $name";
            }
        }
    }
}

// Output "no suggestion" if no hint was found or output correct values
echo $hint === "" ? "no suggestion" : $hint;
?>