forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.php
More file actions
30 lines (30 loc) · 912 Bytes
/
go.php
File metadata and controls
30 lines (30 loc) · 912 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
<?php
$category = "index-all.html";
$page = "welcome.html";
if (array_key_exists('c', $_GET))
{
$category = 'category-' . $_GET['c'] . '-index.html';
}
if (array_key_exists('p', $_GET))
{
$page = $_GET['p'] . '.html';
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>POCO C++ Libraries</title>
</head>
<frameset cols="25%,75%" title="">
<frameset rows="40%,60%" title="">
<frame src="overview.html" title="Overview" name="overviewFrame" />
<frame src="<?php echo $category; ?>" title="Index" name="indexFrame" />
</frameset>
<frame src="<?php echo $page; ?>" title="Details" name="detailsFrame" />
</frameset>
<noframes>
<h1>Frames Required</h1>
<p>This document is designed to be viewed using the frames feature.
If you see this message, you are using a non-frame-capable web client.</p>
</noframes>
</html>