2011-10-25 103 views
0

我確定這已經在堆棧中回答過,但我不知道用什麼適當的術語來找到我想要的結果。來自url的PHP查詢

我想要一個URL的值,並將其輸入到我的PHP腳本。所以,如果我轉到:

http://mydomain/search.php='MYSEARCHQUERY'

的search.php中會採取MYSEARCHQUERY作爲值。

<?php 
$html=file_get_contents('http://anotherwebsite/MYSEARCHQUERY'); 
?> 

回答

3

的URL會是這樣的:

http://mydomain/search.php?query=MYSEARCHQUERY 

和PHP:

$html = file_get_contents('http://anotherwebsite/' . $_GET['query']); 
+0

正要downvote,但您的編輯被迅速推到我的瀏覽器。 +1當之無愧 – Cyclone

+0

天才,謝謝! :) – Nick