I modified your text slightly as shown above to link to the local files /about.php and /privacy.php and to use the HTML entity for the copyright symbol.
If you want to create additional pages that have the same look and feel as the rest of your site, you can create them as follows:
about.php:
<?php
require("includes/common.php");
require("html/header.php");
?>
<h1>About Us</h1>
<p>This is a page all about us!</p>
<?php
require("html/footer.php");
?>
Hi Tony,
To add your links and copyright message, create a new file inside your /html/ folder called user_footer_before.php as follows:
html/user_footer_before.php:
<p style='text-align: center'>
<a href="/about.php">About Me</a> <a href="/privacy.php">Privacy</a> ©2011 My Name
</p>
I modified your text slightly as shown above to link to the local files /about.php and /privacy.php and to use the HTML entity for the copyright symbol.
If you want to create additional pages that have the same look and feel as the rest of your site, you can create them as follows:
about.php:
<?php
require("includes/common.php");
require("html/header.php");
?>
<h1>About Us</h1>
<p>This is a page all about us!</p>
<?php
require("html/footer.php");
?>
Cheers,
David.
--
PriceTapestry.com