1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/results.php
Andreas Möller c093fb5382 Enhancement: Enable trailing_comma_in_multiline fixer (#647)
* Enhancement: Enable and configure trailing_comma_in_multiline fixer

* Fix: Run 'make coding-standards'
2023-12-06 23:16:28 +00:00

21 lines
375 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();