1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/lookup-form.php
Lucas Azevedo b62f99f6de Update navbar design and improve search UI (#1084)
Co-authored-by: Gina Peter Banyard <girgias@php.net>
Co-authored-by: Sergey Panteleev <sergey@php.net>
2024-11-02 17:39:04 +03:00

35 lines
707 B
PHP

<?php
/*
This page is a fallback search for mobile users without JavaScript.
*/
// Ensure that our environment is set up
$_SERVER['BASE_PAGE'] = 'lookup-form.php';
include_once __DIR__ . '/include/prepend.inc';
// Do not index this fallback page
site_header("PHP.net Manual Lookup", ["noindex"]);
?>
<h1>PHP.net Manual Lookup</h1>
<form class="lookup-form" action="/manual-lookup.php" method="get">
<input type="hidden" name="show" value="quickref">
<div class="">
<input
type="search"
name="function"
value=""
aria-label="Lookup docs"
/>
<button type="submit">Search</button>
</div>
</form>
<?php
site_footer();