Parse PHP calls to existing search engines

Source: Internet
Author: User

Copy codeThe Code is as follows: <? Php
$ Key = $ _ GET ['key']; // obtain the keyword
$ Select = $ _ GET ['select']; // obtain the search engine Selection
Switch ($ select) // jump to different pages based on different search engines
{
Case "google": // GOOGLE
$ Url = "http://www.google.com/search? Q = ". $ key;
Header ("Location: $ url ");
Break;
Case "yahoo": // YAHOO
$ Url = "http://search.yahoo.com/search? P = ". $ key;
Header ("Location: $ url ");
Break;
Case "baidu": // baidu
$ Url = "http://www.baidu.com/s? Wd = ". $ key;
Header ("Location: $ url ");
Break;
Default: // if the search engine does not exist, end the program
Break;
}
?>

The running result is 36-4.


Figure 36-4 PHP integrated search engine

Click the Submit button. You can see that the Yahoo website is opened and related search results are found, as shown in Figure 36-5.


Figure 36-5 Yahoo Search Results

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.