<?php
ob_start();
require ("nukelayoutclass.php");
$mypage = new nukeLayout;
$mypage->nukelayoutSitename = "NukeLayout Class"; $mypage->nukelayoutpageTitle = "NukeLayout PHP Class"; $mypage->nukelayoutLogo = "nukelayout.jpg"; $mypage->userightcol = "OFF";
$mypage->addleftBar("Left Column 1","
<A HREF=view_src.php?page=example1.php>View Src</a><br>
<A HREF=example1.php>No Right Column</a><br>
<A HREF=example2.php>No Bottom Banner</a><br>
<A HREF=example3.php>No Top Banner</a><br>
");
$mypage->addleftBar("Left Column 2","
<font size=\"2\">
<li>Linux
<li>Apache
<li>MySQL
<li>PHP
</font>
");
$mypage->
This web site is prepared and maintained by Chauncey Thorn.
The information contained in this site was valid at the time of posting.
Chauncey Thorn, assumes no liability for damages incurred directly or indirectly as a result of errors, omissions or discrepancies.
. With out the need for a database and alot of
programming...
<p>
This class allows you to focus on content!
" );
$mypage->addArticle("Ease of Use", "
The class is very easy to use....
");
$mypage->addRightBar("Right Column 1","
<font size=\"2\">
<li>Linux
<li>Apache
<li>MySQL
<li>PHP
</font>
");
$mypage->addRightBar("Right Column 2","
<A HREF=view_src.php?page=example1.php>View Src</a><br>
<A HREF=example1.php>No Right Column</a><br>
<A HREF=example2.php>No Bottom Banner</a><br>
<A HREF=example3.php>No Top Banner</a><br>
");
$mypage->render();
ob_end_flush();
?>
| |