Ver Mensaje Individual
  #8 (permalink)  
Antiguo 30/03/2012, 09:17
matt_1985
 
Fecha de Ingreso: enero-2011
Ubicación: /root
Mensajes: 530
Antigüedad: 13 años, 3 meses
Puntos: 61
Respuesta: Link para importar datos al php

y si haces simplemente esto:

Código PHP:
Ver original
  1. <?php
  2.      
  3.     include("menu.php");
  4.      
  5.          
  6.          
  7.                     switch($_GET['opcion']){          
  8.                         case uno:      include("pagina1.php");                  break;
  9.                         case dos:      include("pagina2.php");              break;
  10.                         case tres:      include("pagina3.php");                     break;
  11.                         default:          include("pagina1php");            break;
  12.                                 }
  13.                
  14.       ?>

sALUDOS