Ver Mensaje Individual
  #5 (permalink)  
Antiguo 19/02/2006, 11:53
man0l0
 
Fecha de Ingreso: febrero-2006
Mensajes: 155
Antigüedad: 18 años, 2 meses
Puntos: 6
Hola!,

Si haces todo a mano, podrías hacer una simple plantilla en PHP (si es que tu servidor lo soporta), vamos que es solo una simple instrucción.

Tomando tu mismo HTML de más arriba (el que tenía IFRAMES), la plantilla php quedaría mas o menos así:

Código:
<table HEIGHT="100%" WIDTH="100%" border=1>

<tr>
    <td valign="top">
        <?php include('/izq.html'); ?>
    </td>
</tr>
<tr>
    <td valign="top">
       <?php include('/centro.html'); ?>
    </td>
</tr>
<tr>
    <td valign="top">	
	<?php include('/dere.html'); ?>
    </td>
</tr>
</table>

Saludos!