Rock said:Hello,
I want to activate my nav buttons so the PHP pages that they are linked to will load into the HTML page.
Your input is greatly appreciated.
<!--- Call this file index.php -->
<?php if(isset($_GET['do'])) $do = $_GET['do'];
else $do = 'home'; ?>
<!--- HEADER CODE HERE (head, style tags, etc) --->
<?php if(file_exists($do.'.htm')) include $do.'.htm';
else print '<h2>Sorry</h2><p>The file requested was not found.</p>';?>
<!--- FOOTER CODE HERE -->


