hola:
y algo mas sencillo?
algo como esto:
tres radiobutton, con name x,y y z, respectivamente
Código PHP:
$xx=$HTTP_POST_VARS ['x'];
if($xx>0)
{
header("location:xx.htm");
}
$yy=$HTTP_POST_VARS ['y'];
if($yy>0)
{
header("location:yy.htm");
}
$zz=$HTTP_POST_VARS ['z'];
if($zz>0)
{
header("location:zz.htm");
}
este codigo no me funciona evidentemente.
un saludo