Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/09/2008, 00:51
Nathan_1979
 
Fecha de Ingreso: mayo-2007
Mensajes: 348
Antigüedad: 17 años
Puntos: 9
Respuesta: Problema con Switch y Bucle

Buenas

Código PHP:
$pml=$_GET['pml'];

switch (
$pml){
for(
$f=1;$f<=$pml;$f++)
{
 case 
$f;
  
$incluir 'web/pml/'.$f.'.php'// Te faltó un punto despues de la variable
    
$titulo ' - Portfolio';
    break;
}

Saludos!