--- id: php-ajax-php title: "PHP AJAX PHP" category: "Programming_Language" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["XMLHttpRequest", "PHP AJAX μžλ™μ™„μ„±"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.88 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["php", "programming", "w3schools", "ajax", "javascript"] raw_sources: ["https://www.w3schools.com/php/php_ajax_php.asp"] applied_in: [] github_commit: "" --- # [[PHP AJAX PHP]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) The classic autocomplete pattern splits work cleanly across the stack β€” JavaScript's `onkeyup` fires on every keystroke and sends the partial text via `XMLHttpRequest` to a PHP endpoint, while PHP does the actual matching against its name array and returns plain text that JavaScript drops straight into the DOM β€” meaning the PHP side never touches the DOM and the JS side never touches the data logic. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **`onkeyup` event** β€” triggers the JavaScript function on every keystroke, enabling real-time feedback. [S1] - **`XMLHttpRequest`** β€” the JS object used to send the async GET request. [S1] - **`onreadystatechange`** β€” a callback fired when the request's state changes; checks `readyState == 4` (done) and `status == 200` (success) before using the response. [S1] - **Query string parameter passing** β€” the input's current value is appended to the request URL (`gethint.php?q=" + str`). [S1] - **PHP-side matching** β€” `$_REQUEST["q"]` retrieves the query string; `stristr()` performs a case-insensitive substring search against a hardcoded name array. [S1] - **Plain-text response** β€” the PHP script just `echo`s the matched name(s); no JSON/XML wrapping needed for this simple case. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) - JS trigger: ``. [S1] - Async request: `var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("txtHint").innerHTML = this.responseText; } }; xmlhttp.open("GET", "gethint.php?q=" + str, true); xmlhttp.send();`. [S1] - PHP matching: `$q = $_REQUEST["q"]; if ($q !== "") { $q = strtolower($q); $len=strlen($q); foreach($a as $name) { if (stristr($q, substr($name, 0, $len))) { ... } } } echo $hint === "" ? "no suggestion" : $hint;`. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) μ†ŒμŠ€μ—μ„œ λͺ¨μˆœλ˜λŠ” μ •λ³΄λŠ” λ°œκ²¬λ˜μ§€ μ•ŠμŒ. ## πŸ› οΈ 적용 사둀 (Applied in summary) ν˜„μž¬ 발견된 μ‹€μ œ 적용 사둀가 μ—†μŠ΅λ‹ˆλ‹€ β€” 이름 μžλ™μ™„μ„±(μž…λ ₯ μ‹œ μ‹€μ‹œκ°„ μ œμ•ˆ ν‘œμ‹œ)이 AJAX+PHP μ—°λ™μ˜ λŒ€ν‘œ μ‹€μ „ 사둀닀. [S1] ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) PHP-side substring matching against user input (PHP): ```php $q = $_REQUEST["q"]; $hint = ""; if ($q !== "") { $q = strtolower($q); $len = strlen($q); foreach ($a as $name) { if (stristr($q, substr($name, 0, $len))) { $hint = ($hint === "") ? $name : $hint . ", $name"; } } } echo $hint === "" ? "no suggestion" : $hint; ``` ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.88 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[PHP Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[PHP AJAX Intro]], [[PHP AJAX Database]], [[PHP Superglobals Request]] - **μ°Έμ‘° λ§₯락:** JS-PHP 데이터 κ΅ν™˜ 기초 β€” λ°μ΄ν„°λ² μ΄μŠ€ 연동(AJAX Database) μ±•ν„°λ‘œ 이어짐. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” PHP - AJAX and PHP β€” https://www.w3schools.com/php/php_ajax_php.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-07-04: Initial draft synthesized from the W3Schools "PHP - AJAX and PHP" page (Astra wiki-curation, P-Reinforce v3.1 format).