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 35 36 37 38 39 40 41 42 43 44 45 46
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<hta:application
id="phpmanqr"
applicationname="PHP Manual Quickref"
border="dialog"
contextmenu="no"
icon="php_manual.ico"
innerborder="no"
maximizebutton="no"
scroll="no"
selection="no"
version="1.0"
>
<script language="JavaScript" type="text/javascript">
window.resizeTo(240,100);
function quickRef(form)
{
funcpage = "function." + form.lookup.value.replace(/_/g, "-") + ".html";
hta_path = unescape(location.href.substring(8, location.href.lastIndexOf("/")+1));
window.showHelp('file:///' + hta_path + 'php_manual_en.chm::/' + funcpage);
return false;
}
</script>
<style type="text/css">
body {
border: 10;
margin: 10;
background: buttonface;
font-family: Verdana, Arial, Helvetica;
font-size: 10pt;
text-align : center;
vertical-align : middle;
}
</style>
<title>PHP Manual Quickref</title>
</head>
<body>
<form onsubmit="return quickRef(this)">
Function: <input type="text" name="lookup"><br>
<input type="submit" value="Show manual page">
</form>
</body>
</html>
|