Ciao
if($_POST['Ambiente']) {
switch($_POST['Ambiente']) {
case 1: header("Location: http://www.xxx.com/"); break;
case 2: header("Location: http://www.xxx.it/"); break;
case 3: header("Location: http://www.xxx.net/"); break;
}
}
ma nel tag FORM devi aggiungere method="post"
ciaociao