I use smarty class tpl templates. I can't add the links into my pages. they don't appear, I tried the following codes
this is the php file
<?php
$tpl->assign( 'COPYRIGHT', $cSite['sCopyright'] );
$tpl->assign( 'POWEREDBY', 'Copyright....' );
$tpl->assign( 'RECIPROCLINK', '<?php include( "data/output/1001" ); ?>' );
?>
I also tried on the tpl file:
<div id="Footer">
<div class="wrap">
<p><a href="!SITEROOT!">Home</a>
<!-- BEGIN DYNAMIC BLOCK: dynFooter -->
| <a href="!PAGEURL!">!PAGETITLE!</a>
<!-- END DYNAMIC BLOCK: dynFooter -->
| !COPYRIGHT!</p>
<p>!POWEREDBY!</p>
<p>!RECIPROCLINK!</p>
</div>
</div>
Someone please help me out?
this is the php file
<?php
$tpl->assign( 'COPYRIGHT', $cSite['sCopyright'] );
$tpl->assign( 'POWEREDBY', 'Copyright....' );
$tpl->assign( 'RECIPROCLINK', '<?php include( "data/output/1001" ); ?>' );
?>
I also tried on the tpl file:
<div id="Footer">
<div class="wrap">
<p><a href="!SITEROOT!">Home</a>
<!-- BEGIN DYNAMIC BLOCK: dynFooter -->
| <a href="!PAGEURL!">!PAGETITLE!</a>
<!-- END DYNAMIC BLOCK: dynFooter -->
| !COPYRIGHT!</p>
<p>!POWEREDBY!</p>
<p>!RECIPROCLINK!</p>
</div>
</div>
Someone please help me out?