22 lines
614 B
PHP
22 lines
614 B
PHP
<?php
|
|
if (isset($_GET['q'])) {
|
|
header('Access-Control-Allow-Origin: *');
|
|
header('Access-Control-Allow-Methods: GET, POST');
|
|
header('Access-Control-Allow-Headers: Content-Type');
|
|
header('Content-Type: application/json');
|
|
|
|
$query = urlencode($_GET['q']);
|
|
$url = "https://suggestqueries.google.com/complete/search?client=firefox&q={$query}";
|
|
|
|
$ch = curl_init();
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
$response = curl_exec($ch);
|
|
curl_close($ch);
|
|
|
|
echo $response;
|
|
}
|
|
?>
|