<?php
$key = $_GET['key']; //獲得關鍵字
$select = $_GET['select']; //獲得搜索引擎的選擇
switch($select) //根據搜索引擎的不同跳轉到不同的頁面
{
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": //百度
$url = "http://www.baidu.com/s?wd=".$key;
header("Location: $url");
break;
default: //如果搜索引擎不存在,結束程序
break;
}
?>
運行結果如圖36-4所示。
圖36-4 PHP綜合搜索引擎
單擊【Submit】按鈕後,可以看到Yahoo網站被打開了,並搜索到了相關的搜索結果,如圖36-5所示。
圖36-5 Yahoo的搜索結果