<?php
include 'HTMLDoc.class.php';
HTMLDoc();
?>
<h1>HTMLDoc Example</h1>
<hr/>
<?php
$page=(isset($_GET['page']))?$_GET['page']:'page1';
$page.='.php';
echo '<b>Displaying:</b> '.$page;
echo ' <a href="page1.php" style="margin-left: 20px;">See it Alone</a>';
?>
<hr/>
<?php
include $page;
?>
<hr/>
<code style="display: block; text-align: center">A <a href="http://www.krizka.net">Karol Krizka</a> Creation</code>
|