Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/06/2008, 07:14
Avatar de jaronu
jaronu
 
Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 17 años
Puntos: 52
Respuesta: Ayuda con php simple

mira aver si asi te lo hace

Código PHP:
<?php  


if(!isset ($_GET['s'])){ 
            
            include(
"web/index-include.php");
        
        }else if (
file_exists("web/".$_GET['s'].".php")) {

            include(
"web/".$_GET['s'].".php"); 
            
        }else{
        
        
?>REDIRECCION EN JAVASCRIPT<?php
        
        
}
        
?>

Un saludo