var xmlHttp; var xmlHttp2; var xmlHttp3; var inputField; var inputField2; var inputField3; var aod; var aod2; var time; var spname; function createXMLHttpRequest() { if (window.ActiveXObject) { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } } function createXMLHttpRequest3() { if (window.ActiveXObject) { xmlHttp3 = new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { xmlHttp3 = new XMLHttpRequest(); } } function initVars() { inputField = document.getElementById("txtnames"); } function findNames() { initVars(); if (inputField.value.length > 0) { createXMLHttpRequest(); var url = "stadiumshowprice.php?txtnames=" + inputField.value; xmlHttp.open("GET", url, true); spname=inputField.value; //alert(url); //alert(inputField.value); //alert("step1"); xmlHttp.onreadystatechange = callback; xmlHttp.send(null); } else { //alert("step1 erer"); } } function callback() { if (xmlHttp.readyState == 4) { if (xmlHttp.status == 200) { //alert("step 2 "); startRequest(); } else if (xmlHttp.status == 204) { alert("step 2 erer"); } } } function startRequest() { createXMLHttpRequest(); xmlHttp.open("get","stadiumshowprice.php?txtnames="+inputField.value,true); xmlHttp.onreadystatechange = function () { if (xmlHttp.readyState == 4) { if (xmlHttp.status == 200) { displayInfo(xmlHttp.responseText); //alert("step 3"); } else { displayInfo("พบข้อผิดพลาด: " + xmlHttp.statusText); alert("step 3 erer"); } } }; xmlHttp.send(null); } function displayInfo() { aod = document.getElementById("divInfo").innerHTML = xmlHttp.responseText; //alert("step 4"); //alert(aod); } </script>
<?php $DBServer = "localhost"; $DBName = "project"; $DBUsername = "root"; $DBPassword = "1234"; $a=$_GET["txtnames"]; $conn=mysql_connect( $DBServer, $DBUsername, $DBPassword ) or die( "ไม่สามารถติดต่อกับMySQLได้"); mysql_select_db( $DBName ) or die( "ไม่สามารถเลือกใช้ฐานข้อมูล $dbname ได้" ); $charset="SET NAMES 'tis620'"; mysql_query($charset); //echo $a; $sql="SELECT sp_price FROM sportstadium WHERE sp_name_eng='$a'"; //echo $sql; $result1= mysql_query($sql,$conn); while($result=mysql_fetch_array($result1)) { echo"$result[sp_price]"; } mysql_close(); ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง