Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/07/2002, 14:47
Avatar de camargo
camargo
 
Fecha de Ingreso: abril-2002
Ubicación: Kerétaro, Méjiko
Mensajes: 1.045
Antigüedad: 22 años
Puntos: 2
Re: Ayuda!... q no tengo idea de como hacer esto ...

usa este codigo:

<?php

if($secc="deportes"){
include("deportes.php");
}
else if($secc="actualidad"){
include("actualidad.php")
} else {
include("menu.php")
}

///SI DESEAS HACER MAS SECCIONES HAZLAS CON ELSE IF, recuerda crear los archivos ej: menu.php y funcioonara aSI: pagina.php?secc=deportes

SUERTE!