Almost there! I do have a button that I forgot to post... this is the complete code for both sites:
****SITE1***********
<? session_start(); ?>
<html> <head></head>
<body>
<form method="POST">
<input type="radio" name="continent" value="asia">Asia<br>
<input type="radio" name="continent" value="australia">Au<br>
<input type="button" value="Continue" onclick="validateForm(this.form)">
</form>
</html></body>
***SITE2**************
<? session_start(); ?>
<html> <head></head>
<body>
<?
$SESSION['continent'] = $POST['continent'];
print $_SESSION["continent"];
?>
</html></body>
At this point it still doesnt echo anything on the screen. However bpat's code works just fine except the button that i have calls a js function validateForm which checks if the user has selected one continent and if true redirects them to site2 with window.location("site2").
What am I still missing??