13 lines
No EOL
307 B
PHP
13 lines
No EOL
307 B
PHP
<?php
|
|
header('Content-Type: application/json');
|
|
|
|
require "fetch.php";
|
|
|
|
$query = $_REQUEST["q"];
|
|
$page = (int) $_REQUEST["p"] * 10;
|
|
$type = $_REQUEST["img_search"] == "true" ? true : false;
|
|
|
|
$results = fetch_results($query, $page, $type);
|
|
|
|
echo json_encode($results, true);
|
|
?>
|