Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/01/2006, 08:15
Avatar de spider_boy
spider_boy
 
Fecha de Ingreso: diciembre-2003
Ubicación: Chile
Mensajes: 1.855
Antigüedad: 20 años, 4 meses
Puntos: 89
podría ser con un switch...

Código PHP:

switch ($_GET['param'])
{
case 
"valor1": include("archivo1.php");
break;

case 
"valor2": include("archivo2.php");
break;

nos vemos :)