Thread: Updating Links
View Single Post
  #8 (permalink)  
Old Dec 2nd, 2006, 22:36
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Updating Links

Index.php:

PHP: Select all

<?php
include "header.php";
?>
        <h2>Content</h2>
        <p>A little page specific text about something or other.</p>
<?php
include "footer.php";
?>
header.php:

PHP: Select all

<html>
    <
head>
        <
title>Page Title</title>
    </
head>
    <
body>
        <
h1>Website Name</h1
footer.php:

PHP: Select all

        <p>Copyright © 2006 XXXX</p>
    </
body>
</
html
Reply With Quote