Hi friends,

I m in a production of a big web projects which including a forum, blog ...

So I divide my page in to 3

1. Top banner page :(banner.php): (which includes my banner and main menu of my site )
2. middle content page
3. Bottom footer page : (footer.php)

So in my pages I just used this

<?php
include('include/banner.php');
?>
Page Content Here
<?php
include('includes/footer.php');
?>

Is this a correct way ? Is this affect SEO process means Crawling ?

If this is wrong what is the best way for including header page properly ...
If I put header in each pages then if I need any updation it is very hard ....

Please advise me
Thanks
Rajeesh

Aside from the coding snippet, this type of architecture seems like a standard way to do things in php.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.