forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlookup-form.php
More file actions
34 lines (25 loc) · 707 Bytes
/
Copy pathlookup-form.php
File metadata and controls
34 lines (25 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?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();