Login   Register  
PHP Classes
elePHPant
Icontem

File: Example

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Karol Krizka  >  HTML Document  >  Example  >  Download  
File: Example
Role: Example script
Content type: text/plain
Description: This is the example file.
Class: HTML Document
Buffer the HTML contents of a page before serving
Author: By
Last change:
Date: 2007-08-18 22:10
Size: 421 bytes
 

Contents

Class file image Download
<?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>