Posted by tommylux on 02/11/07 17:43
Hi there So far I have designed a simple template file in PHP:
<?php if(!$page) $page="home";
if(file_exists("/my root/public_html/progress/$page.html")) {
include("/my root/public_html/progress/$page.html"); } else {
include("/my root/public_html/progress/404.html"); } ?>
Where I want the breadcrumbs, i have a: <?php print($location); ?>
and the content below breadcrumbs is: <?php print($content); ?>
My example $page looks like this:
<?php $location=" <a href=\"index.php?page=home\">HOME</a>   »
  <a href=\"index.php?page=\contact">CONTACT US</a>";
$content='<table border="0" cellspacing="0" cellpadding="0"
dwcopytype="CopyTableCell">
<td width="542" valign="top"><img src="img/mm_spacer.gif" alt=""
width="305" height="1" border="0" /><br />
<br />
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td height="35" valign="top" class="pageName">Contact Us </
td>
</tr>
<tr valign="top">
<td height="371" class="bodyText"><p>Your email has been
received and will be answered shortly.</p>
<p align="left"><img src="img/emailfire.gif" width="105"
height="129" /> </p></td>
</tr>
</table>
<br />
<br /> <img src="img/mm_spacer.gif" alt="" width="50"
height="1" border="0" /></td>
</table>'; ?>
Some pages dont work cause i use a ' symbol in the content.
Is there a better way to do breadcrumbs?
Thanks
Tom
Navigation:
[Reply to this message]
|