Well there's a couple solutions available, but they'd use some different languages than just straight HTML.......for instance you could use JavaScript to collect the values of the radio buttons and put them in a cookie that would be passed to the next page, or the simplest would probaby be to use a language like PHP and utilize the html Post or Get methods from a form. the code for this would look something like ::
****************************************************
*************INITIAL PAGE WITH RADIO BUTTONS************
****************************************************
<html>
<head>
<title>First Page</title>
</head>
<body>
<form name="form1" action="display.php" method="post">
<input type="radio" name="one" value="Yes"> <input type="radio" name="one" value="No">
<input type="submit" value="submit>
</form>
</body>
</html>
**************************************************
****************DISPLAY PAGE (PHP)*******************
**************************************************
<html>
<head>
<title>show</title>
<?php
$var1 = $_REQUEST['one'];
?>
</head>
<body>
<br><br><center><?= $var1 ?></center>
</body>
</html>
*******************************************************
**********************END EXAMPLE***********************
*******************************************************
The thing to remember about this one is that the page that is displaying the values has to be a PHP page. You can do this exact same thing in CGI or any wide variety of other languages. The initial page can be straight htm as long as you're using the form tags.
If you want you can use the Get methods (replace POST with GET in the form tag), which puts the values up in the URL, but you're limited in size of how much you can throw up there, and text area's don't work then.
If this doesn't work, just yell at me or something
__________________
Quis custodiet ipsos custodes?
|