|  | Posted by tommylux on 02/11/07 22:53 
In my template page, i am currently trying to put the PHP Print beforeinclude, and it doesnt work. Is there a PHP Command to open or pass
 the php file without including it on the page?
 
 <?php print($breadcrumb); ?>
 <?php include("/home/embers-o/public_html/progress/breadcrumb/
 content.php"); ?>
 
 Thanks
 
 Tom
 
 
 On Feb 11, 9:02 pm, "petersprc" <peters...@gmail.com> wrote:
 > You can escape the single quote (\'). But you may want to just put the
 > content outside the script tags instead of putting it in a variable.
 >
 > Here's a breadcrumb function that uses the file system to get path
 > info:
 >
 > http://www.evolt.org/article/Breadcrumbs_for_PHP_Lovers/17/4455/
 >
 > On Feb 11, 12:43 pm, "tommylux" <tommy...@gmail.com> wrote:
 >
 > > 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
 [Back to original message] |