Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/03/2009, 13:23
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Consulta...Index con frame

Hola amigos, estuve buscando en google y tengo el siguiente codigo:
Código php:
Ver original
  1. <!-- <table border="0" cellpadding="0" cellspacing="0" width="1000" align="center">
  2. <tr>
  3.  <td width="170" align="center" valign="top"><?php include("include/menu_izquierdo.php"); ?></td>
  4.  <td width="12"></td>
  5.  <td width="" align="center" valign="top">
  6.  <?php
  7.     if($pagina==1){
  8.         include("include/productos.php");
  9.     }elseif($pagina==5){
  10.         include("include/detalle_producto.php");
  11.     }elseif($pagina==7){
  12.         include("include/registrar.php");
  13.     }else{
  14.         include("include/nosotros.php");
  15.     }
  16.  ?>
  17.  </td>
  18.  <td width="125"></td>
  19. </tr>
  20. </table> -->
y el problema que no la atino es que quisiera me orientaran como modificarlo para que al estar ingresar en la pagina Nº 5 (detalle_producto.php) me visualizarA EN TODO EL ANCHO de tabla ( YA NO ME VISUALIZE el menu_izquierdo.php) .

Gracias de antemano,