Files
archived-doc-base/htmlhelp/suppfiles/html/_function.html
Gabor Hojtsy 67aac57cfb Add _function.html to support IDEs without native PHP
function lookup support. Now, an IDE can be configured
to show a page for a function lookup in the form:

 mk:@MSITStore:D:\phpcvs\phpdoc\htmlhelp\release\php_manual_en.chm::/_function.html#mysql_connect

and the mysql_connect function page will appear...


git-svn-id: https://svn.php.net/repository/phpdoc/doc-base/trunk@109082 c90b9560-bf6c-de11-be94-00142212c4b1
2002-12-26 23:16:22 +00:00

21 lines
582 B
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Function Redirect</title>
<script language="JavaScript" type="text/javascript">
function loadPage()
{
if (location.hash.length > 0) {
funcname = location.hash.substr(1);
funcpage = "function." + funcname.replace(/_/g, "-") + ".html";
path = location.href.substring(0, location.href.lastIndexOf("/"));
location.replace(path + '/' + funcpage);
}
}
</script>
</head>
<body onload="loadPage();">
</body>
</html>