Is there anyway I can set where the <? include('file.html') ?> is going to appear.. as far as alignment goes. Like top bottom center.... ect
<div align="right OR center OR left">
<? include('file.html') ?>
</div>
not sure if it works but give it a try...
ali
The include() or require() methods will pass whatever file you specify into the calling file. If those included files contain any printable HTML, that HTML inherits the state and properties of the HTML above it. You must learn to write in PHP whilst thinking in HTML, since HTML is all PHP is going to output anyways. HTH.
geoff
Thanks both of your comments are really helpful.