Cita:
Necesito que a la siguiente pagina que es index2.php... muestre el contenido segun la variable, si es "01" mostrar el contenido de navidad y si es "02" mostrar el contenido de año nuevo.<?php
$pac = $_POST["CARDTYPE_SHOW"];
$tipo = "";
if($pac=="01") { $tipo = "tarjeta-navideña"; }
if($pac=="02") { $tipo = "tarjeta-añonuevo"; }
header("Location: index2.php?tipo=$tipo&nom=$pac");
}
?>
$pac = $_POST["CARDTYPE_SHOW"];
$tipo = "";
if($pac=="01") { $tipo = "tarjeta-navideña"; }
if($pac=="02") { $tipo = "tarjeta-añonuevo"; }
header("Location: index2.php?tipo=$tipo&nom=$pac");
}
?>
Espero puedan ayudarme gracias.