mirror of
https://github.com/hnhx/librex.git
synced 2025-01-25 10:13:03 -03:00
13 lines
307 B
PHP
13 lines
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);
|
||
|
?>
|