Now you're learning something - So it all hasn't been wasted. Here's an example of what the core of my template.php looks like. It's neat, orderly and uncluttered.Think about keep on doing the same sort of thing and life will become a whole lot easier. Code: [Select]<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td class="" colspan="3" style="padding-top: 0px;" ><?php include "templates/$template/blocks/announcements.php"; include "templates/$template/blocks/my_favs.php"; include "templates/$template/blocks/header-space.php"; include "templates/$template/blocks/newest.php"; include "templates/$template/menu-1.php";?> </td> </tr><tr> <td class="l_side_panel" width="200"><?phpinclude "templates/$template/blocks/user-menu.php"; if ( $_GET['action'] == 'search' ) {/*Do Nothing*/} else { include "templates/$template/blocks/search.php"; };include "templates/$template/blocks/submenu1.php";include "templates/$template/blocks/links.php";include "templates/$template/blocks/validator.php";?> </td> <td class="maintable" width="100%" valign="top"><?phpwritebody();?></td> <td class="r_side_panel" width="200"><?phpinclude "templates/$template/blocks/online.php";include "templates/$template/blocks/ads-right.php";include "templates/$template/blocks/ads-left.php";include "templates/$template/blocks/banners-right.php";include "templates/$template/blocks/banners-left.php";include "templates/$template/blocks/ads-3.php";?> </td> </tr> </table>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td class="" colspan="3" style="padding-top: 0px;" ><?php include "templates/$template/blocks/announcements.php"; include "templates/$template/blocks/my_favs.php"; include "templates/$template/blocks/header-space.php"; include "templates/$template/blocks/newest.php"; include "templates/$template/menu-1.php";?> </td> </tr><tr> <td class="l_side_panel" width="200"><?phpinclude "templates/$template/blocks/user-menu.php"; if ( $_GET['action'] == 'search' ) {/*Do Nothing*/} else { include "templates/$template/blocks/search.php"; };include "templates/$template/blocks/submenu1.php";include "templates/$template/blocks/links.php";include "templates/$template/blocks/validator.php";?> </td> <td class="maintable" width="100%" valign="top"><?phpwritebody();?></td> <td class="r_side_panel" width="200"><?phpinclude "templates/$template/blocks/online.php";include "templates/$template/blocks/ads-right.php";include "templates/$template/blocks/ads-left.php";include "templates/$template/blocks/banners-right.php";include "templates/$template/blocks/banners-left.php";include "templates/$template/blocks/ads-3.php";?> </td> </tr> </table>