|
Re: PHP Include, file help!
<?php include('header.php'); ?>
<div style="position: absolute; left: 246; top: 619; width: 574; height:180">
<div style="width: 574; height: 224"><p class="Header">Welcome~</div>
</div>
<?php include('footer.php'); ?>
--------
Instead of "including"
why not just "echo" your header/footer ... or if your page is scripted in HTML just have it in "class" text so you can avoid using headers and footers... It also slows down the page when you have excessive .php scripts for no reason... Like this.
|