Php + ajax do imitation Baidu search drop-down automatic prompt box (with instances) _ PHP-php Tutorial

Source: Internet
Author: User
The drop-down prompt box for php + mysql + ajax implementation of Baidu search mainly contains three files and three files in the same directory. below is the code for the three files. import the SQL file to the mysql database and modify it. under the database password for their own remember Oh UTF-8 code Ajax

The drop-down prompt box for php + mysql + ajax implementation of Baidu search mainly contains three files and three files in the same directory, as shown in figure

The following is the code of the three files to import the SQL file into the mysql database to modify the database password for their own remember Oh is UTF-8 code

Php + mysql + ajax implement Baidu search drop-down prompt box


Rpc. php file
The code is as follows:
Mysql_connect ('localhost', 'root ','');
Mysql_select_db ("test ");
$ QueryString = $ _ POST ['querystring'];
If (strlen ($ queryString)> 0 ){
$ SQL = "SELECT value FROM countries WHERE value LIKE '". $ queryString. "% 'limit 10 ";
$ Query = mysql_query ($ SQL );
While ($ result = mysql_fetch_array ($ query, MYSQL_BOTH )){
$ Value = $ result ['value'];
Echo'
  • '. $ Value .'
  • ';
    }
    }
    ?>

    Index.htm file
    The code is as follows:




    Ajax Auto Suggest

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.