Native JS implements Ajax to interact with PHP through GET method
This article mainly introduces how native JS implements Ajax to interact with PHP through GET. It has a certain reference value. Now I share it with you. Friends in need can refer to it.
Examples of this article Use native JS to implement Ajax to interact with PHP through GET. Share it with everyone for your reference, the details are as follows:
1. Code
conn.php
<?php $conn=mysql_connect("localhost","root","root") or die("数据库连接失败".mysql_error()); mysql_select_db("db_database27",$conn) or die("数据库连接失败".mysql_error()); mysql_query("set names gb2312"); ?>
index.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>通过XMLHttpRequest对象读取HTML文件,并且输出读取结果</title> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 00px; margin-right: 0px; margin-bottom: 0px; } --> </style></head> <script> var xmlHttp; //定义XMLHttpRequest对象 function createXmlHttpRequestObject(){ //如果在internet Explorer下运行 if(window.ActiveXObject){ try{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }catch(e){ xmlHttp=false; } }else{ //如果在Mozilla或其他的浏览器下运行 try{ xmlHttp=new XMLHttpRequest(); }catch(e){ xmlHttp=false; } } //返回创建的对象或显示错误信息 if(!xmlHttp) alert("返回创建的对象或显示错误信息"); else return xmlHttp; } function showsimple(){ createXmlHttpRequestObject(); var cont = document.getElementById("searchtxt").value; if(cont==""){ alert('查询关键字不能为空!'); return false; } xmlHttp.onreadystatechange=StatHandler; //判断URL调用的状态值并处理 xmlHttp.open("GET",'searchrst.php?cont='+cont,false); xmlHttp.send(null); } function StatHandler(){ if(xmlHttp.readyState==4 && xmlHttp.status==200){ document.getElementById("webpage").innerHTML=xmlHttp.responseText; } } </script> <body> <table width="800" height="632" border="0" align="center" cellpadding="0" cellspacing="0" background="images/bj.jpg"> <tr> <td width="260" height="245"> </td> <td width="500" align="center" valign="bottom"><strong>查询员工信息,根据员工技能信息</strong></td> <td width="40"> </td> </tr><form id="searchform" name="searchform" method="get" action="#"> <tr> <td height="40"> </td> <td align="center">请输入关键字: <input name="searchtxt" type="text" id="searchtxt" size="30" /> <input id="s_search" name="s_search" type="button" value="查询" onclick="return showsimple()" /></td> <td> </td> </tr> </form> <tr> <td height="268"> </td> <td align="center" valign="top"><p id="webpage"></p></td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table> </body> </html>
searchrst.php
<?php header('Content-type: text/html;charset=GB2312'); //指定发送数据的编码格式 include_once 'conn/conn.php'; //连接数据库 $cont = $_GET['cont']; //获取Ajax传递的查询关键字 if(!empty($_GET['cont'])){ //判断如果关键字不为空 $sql = "select * from tb_administrator where explains like '%".$cont."%'"; //定义SQL语句 $result=mysql_query($sql,$conn); //执行模糊查询 if(mysql_num_rows($result)>0){ //获取查询结果 echo "<table width='500' border='1' cellpadding='1' cellspacing='1' bordercolor='#FFFFCC' bgcolor='#666666'>"; echo "<tr><td height='30' align='center' bgcolor='#FFFFFF'>ID</td><td align='center' bgcolor='#FFFFFF'>名称</td><td align='center' bgcolor='#FFFFFF'>编号</td><td align='center' bgcolor='#FFFFFF'>描述</td></tr>"; while($myrow=mysql_fetch_array($result)){ //循环输出查询结果 echo "<tr><td height='22' bgcolor='#FFFFFF'>".$myrow[id]."</td>"; echo "<td bgcolor='#FFFFFF'>".$myrow[user]."</td>"; echo "<td bgcolor='#FFFFFF'>".$myrow[number]."</td>"; echo "<td bgcolor='#FFFFFF'>".$myrow[explains]."</td>"; echo "</tr>"; } echo "</table>"; }else{ echo "没有符合条件的数据"; } } ?>
2. Running results
The above is the entire content of this article, thank you for reading. Please pay attention to the PHP Chinese website for more information!
Related recommendations:
Understanding of PHP memory overflow, command line and Web service execution methods
php implementation Alipay face-to-face payment (scan QR code payment) function
# #
The above is the detailed content of Native JS implements Ajax to interact with PHP through GET method. For more information, please follow other related articles on the PHP Chinese website!

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
