1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/searchbar.php
Jacques Marneweck 0143fb470c * More sysstat reducing stuff.
* Also added CVS Id: tags to files missing them at the top.

--jm
2003-05-15 23:22:13 +00:00

80 lines
2.4 KiB
PHP

<?php
/* $Id$ */
include_once "./include/prepend.inc";
// Gecko would like to see the target to be _content, while IE would
// like to see the target to be _main. Other browsers are not expected
// to visit this page, or support for them will be added in the future.
if (preg_match("!Gecko!", $_SERVER['HTTP_USER_AGENT'])) {
$target = "_content";
} else {
$target = "_main";
}
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>PHP.net Search Sidebar</title>
<link rel="shortcut icon" href="/favicon.ico" />
<style>
select, input, button, body, p, td {
font-family: Verdana, Arial, Helvetica, Sans Serif;
font-size: 75%;
}
.title {
font-size: 25px;
color: black;
font-weight: bold;
}
.indented {
margin: 5px 5px 5px 5px;
}
</style>
</head>
<body topmargin="0" leftmargin="0"
bgcolor="#ffffff" text="#000000" link="#000099" alink="#0000ff"
vlink="#000099" onload="document.sform.pattern.focus();">
<table border="0" cellspacing="2" cellpadding="0">
<tr>
<td width="69"><a href="/" target="<?php echo $target ?>"><img src="/images/logos/php-logo.gif" width="69" height="36" border="0" alt="PHP" hspace="3" vspace="3" /></a></td>
<td class="title" align="left">Search</td>
</tr>
<tr bgcolor="#333366"><td colspan="2"><?php spacer(); ?></td></tr>
<tr>
<td colspan="2">
<div class="indented">
<form method="post" action="/search.php" target="<?php echo $target ?>" name="sform">
<?php
if (isset($EXPL_LANG)) {
echo ' <input type="hidden" name="lang" value="'. $EXPL_LANG . '" />';
}
?>
Search for<br />
<input type="text" name="pattern" value="" style="width: 95%"/><br />
in the<br />
<select name="show" style="width: 95%">
<option value="quickref" selected>function list
<option value="wholesite">whole site
<option value="manual">online documentation [en]
<option value="bugdb">bug database
<option value="maillist">general mailing list
<option value="devlist">developer mailing list
<option value="phpdoc">documentation mailing list
</select><br />
<input type="submit" value="Search">
</form>
</div>
</td>
</tr>
<tr bgcolor="#333366"><td colspan="2"><?php spacer(); ?></td></tr>
<tr>
<td colspan="2">
<div class="indented">
<a href="/copyright.php" target="<?php echo $target ?>">Copyright &copy; 2002, 2003 The PHP Group</a><br />All rights reserved.
</div>
</td>
</tr>
</table>
</body>
</html>