Código PHP:
<?php include('includes/header.php'); ?>
<table width="980" border="0" cellspacing="0" cellpadding="5" align="center">
<tr>
<td valign="top">
<?php include('includes/izquierda.php'); ?><br>
</td>
<td valign="top">
<center><?php include('includes/banner.php'); ?></center>
<br>
<?
if (file_exists($ruta_modulo)){
include($ruta_modulo);
}else{
die('Error al cargar el módulo <b>'.$modulo.'</b>.
<br>No existe el archivo <b>'.$conf[$modulo]['mod'].'</b>');
}
?>
<br><br>
</td>
<td valign="top">
<?php include('includes/derecha.php'); ?><br>
</td>
</tr>
</table>
<?php include('includes/footer.php'); ?>