ok, vada per il GET
questa dovrebbe funzionare
OCCHIO CHE C'E' UN PROBLEMA SUL TAG CODE
Javascript viene interpretato come java-script
deve essere scritto "javaScript"
Codice PHP:
<head>
<script language="javaScript">
<!--
function validate(){
if(document.getElementById("myradio_T").checked) top.location="mypage.php?myparam=T";
if(document.getElementById("myradio_N").checked) top.location="mypage.php?myparam=N";
if(document.getElementById("myradio_V").checked) top.location="mypage.php?myparam=V";
}
//-->
</script>
</head>
<body>
<input type="radio" name="myradio" id="myradio_T" onclick="javaScript:validate();return false">Tutto</input>
<input type="radio" name="myradio" id="myradio_N" onclick="javaScript:validate();return false">Nuovi</input>
<input type="radio" name="myradio" id="myradio_V" onclick="javaScript:validate();return false">Vecchi</input>
</body>