I have the trial3.php code here.
<html>
<head>
<title>
choose 1
</title>
</head>
<form>
<input type='radio' name='name1'>edit<?php echo "<form action=trial.php></form>";?></br>
<input type='radio' name='name2'>GMT<?php echo "<form action=trial2.php></form>"; ?></br>
<input type='submit' name='SEND' value='send'>
</form>
</html>
<?php
$send;
$fetch_DATA1=$_GET['name1'];
if($_GET['name1'])
echo "<form action=trial.php method=get></form>";
else
echo "<form action=trial2.php method=get></form>";
?>
what i want is to have 2 radio button selections that act as a switch case. for example I clicked on GMT then when I clicked on submit button... the GMT calculation page will run. and if it is not, then it shows the other one... if u cannot get the point of my problem... pls tell me