|
i am trying to get the calendar and statistics to appear side by side underneath the categories
tried adding this to the undercat template but nothing happened - how can i get this to work - thanks
echo<<<PPPRINT
<tr>
<td>}
if ( $Globals['statspal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/statspal.tmpl" );
}</td>
<td>}
if ( $Globals['calpal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/calpal.tmpl" );
}</td>
</tr>
PPPRINT;
|