don't seem to wor:
i have make a form page
with form action="page.php" (in this form i have 2 radio with name "radio")
i click on send i get the page.php where i have add in this page:
<?php
if($HTTP_POST_VARS['radio']=="page1") header("Location: page1.php");
if($HTTP_POST_VARS['radio']=="page2") header("Location: page2.php");
?>
but i only get a blank page
Btw: i have make also a page1.php test 🙂
what's wrong?