![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
01/05/2006, 07:03
|
| | Fecha de Ingreso: febrero-2006
Mensajes: 34
Antigüedad: 19 años Puntos: 0 | |
Código:
http:loquesea/index.php?cod=xxxx
if($_GET["cod"] == "algo")
header("Location: pag1.php");
else
header("Location: pag2.php");
o sino
Código:
http:loquesea/index.php?cod=xxxx
if($_GET["cod"] == "algo")
include "codigo1.php";
else
include "codigo2.php";
salu2 |