header
 
     
 
pixel
pixel pixel

Including your HTML headers and footers in separate php files

The thing I don't like about flat HTML files is you need to repeat the same HTML code throughout your website. Then if you need to make a change to your web design (eg - add or edit a navigation button), you have to go throughout the entire website editing each page. There are ways around this such as using Dreamweaver templates but my preferred method is to move the common HTML code into separate files header.php and footer.php. Then on each webpage, I use the php function include() to insert the header and footer HTML into each page. Then if I need to make a change throughout the website, I merely make one change in the header or footer files. Easy peasy!

So when I first develop a website, the first thing I do is create a single HTML document. By way of example, here's a typical webpage (note - it's very simple HTML):

index.php
<html>
    <head>
        <title>Website Title</title>
    </head>
    <body>
        <table>
            <tr>
                <td colspan=3>Header</td>
            </tr>
            <tr>
                <td>Left Margin</td>
                <td>Main Content</td>
                <td>Right Margin</td>
            </tr>
            <tr>
                <td colspan=3>Footer</td>
            </tr>
        </table>
    </body>
</html>

Once I've completed the HTML page and everything looks good, I break the above HTML page up into 3 separate files:

header.php
<html>
    <head>
        <title><?= $PageTitle ?></title>
    </head>
    <body>
        <table>
            <tr>
                <td colspan=3>Header</td>
            </tr>
            <tr>
                <td>Left Margin</td>
                <td>

index.php
<?php
$PageTitle 
"Website Title";
include (
'header.php');
?>
Main Content
<?php
include ('footer.php');
?>

footer.php
                </td>
                <td>Right Margin</td>
            </tr>
            <tr>
                <td colspan=3>Footer</td>
            </tr>
        </table>
    </body>
</html>

Note - to allow me to use a different title on each webpage (and every other page in the website), I use the variable $PageTitle in header.php. Of course this means that in index.php, I have to define $PageTitle before I include header.php or I'll get an undefined variable error.


Unhelpful Helpful Rating 3.1 (score out of 5, no. of ratings: 13)
Comments
Comment by Coach Handbags on 2010-07-30

In recent years, Coach handbags has indeed built up quite a reputation and enjoys increasing popularity with consumers. With its popularity, Coach Bags become the most preferred brand throughout the world. Gucci Handbags are the obvious choice for many fashion conscious business women and those with a preference for timeless oakley sunglasses classic styles and they wear so well and go with nearly everything in your closet.This bag is really worth owning.Coach Wallets was on the Chinese market for nearly 50 years. You can even see older people carry a coach starting line handbag. Cheap Coach Purses Coach Bags are excellent for high quality and low price. These bags are more and more what people want.As Coach Outlet you smart crocodile, Caiman fuscus Coach Crossbody Bags crocodile clutch his last, which has five versions to choose from: orange,Chanel Handbags brown, gold, black, dark silver to make. Coach Op Art Bags The five drawings of the Viper clutch are per kart.

You will get more results out of your workouts - MBT have technology in the sole design that make your working more efficient and burn more calories. mbt outlet With every step, the instability activates Cheap MBT Shoes your muscles and the whole body is stimulated as your walk more and more.mbt shoes outlet have a curved pivot sole that copies walking on soft moss. The sole turns even, flat ground into uneven terrain. The discount mbt shoes challenges the muscles to work harder with every step you take. The unique curved sole works by providing instability and makes the muscles of your body more engaged and also helps burn more calories.MBT Sandals MBT VOI Shoes

MBT Salama Sandal

MBT Habari Sandal

MBT Fumba Sandals

Post a Comment
Name
Email
(optional)
Comment
RatingUnhelpful Helpful
Security Image* (this is just to prevent spam submissions)
Security Image