![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
02/08/2007, 08:52
|
| | Fecha de Ingreso: agosto-2002
Mensajes: 31
Antigüedad: 22 años, 5 meses Puntos: 1 | |
Re: Problemas con web modular Otra cosa que puedes hacer es utilizar headers()
por ejemplo creas un index.php y dependiendo del valor del $_GET lo mandas a un sitio o a otro
if(addslashes($_GET['seccion']) && in_array($_GET['seccion'],$modules)){
if($_GET['seccion']=="seccion1"){
header("LOCATION: http://www....".$_GET['seccion']);
}
}
no sé, hay muchísimas posibilidades.
:=) |