mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
10 lines
170 B
PHP
10 lines
170 B
PHP
<?php
|
|
require "static/header.php";
|
|
require "engines/pinterest.php";
|
|
|
|
$query = $_GET['q'];
|
|
|
|
$imgResults = get_image_results($query);
|
|
print_image_results($imgResults);
|
|
|
|
?>
|