View Single Post

  #2 (permalink)  
Old 28-03-2008, 02:35 PM
Goodshape's Avatar
Goodshape Goodshape is offline
Coder
Recent Blog: Iphone post
 
Join Date: Feb 2007
Location: Dublin
Posts: 59
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Goodshape will become famous soon enough
Send a message via MSN to Goodshape Send a message via Skype™ to Goodshape
Default

If you're using PHP, then a PHP include gets my vote. Search engines will handle this just fine as PHP is server side scripting.. so by the time the search engine views the page the include has already been made.

1) create a page - footer.php
2) put your footer content in there, and nothing else.
3) remove any existing footer information from other pages on your site and replace with :
Code:
<?php include 'footer.php'; ?>
And you're laughing. Only need to update footer.php in future to make site-wide changes.

This method also works well for headers and menus and basically anything else you want to be uniform throughout the entire site.

Last edited by Goodshape; 28-03-2008 at 02:39 PM.
Reply With Quote