Hi,
Can anyone help me with a little problem. What I want to do is call all my navigation links from another file parrallel to my script and also the main content of the page from another file. In this files I also want to use php. So basically what I want to know is how to build up a page from seperate component pages.
Thanks in advance Bytey
if your content is in content.php then 'include' that file.
i.e. <?
include("top.php");
include("content.php");
?>
will read and process top.php and then content.php