mirror of
https://github.com/php/web-php.git
synced 2026-04-26 16:38:04 +02:00
d9bcfed482
Co-authored-by: MathiasReker <mathias@reker.dk> Closes GH-659.
21 lines
374 B
PHP
21 lines
374 B
PHP
<?php
|
|
$_SERVER['BASE_PAGE'] = 'results.php';
|
|
include __DIR__ . '/include/prepend.inc';
|
|
include __DIR__ . '/include/results.inc';
|
|
|
|
// HTTP status line is passed on, signifies an error
|
|
site_header(
|
|
'Search results',
|
|
[
|
|
'noindex',
|
|
'current' => 'help',
|
|
'layout_span' => 12,
|
|
]
|
|
);
|
|
|
|
echo '<h1>Search results</h1>';
|
|
|
|
google_cse();
|
|
|
|
site_footer();
|