I'm not totally sure what you're asking. Are you saying that you want the information submitted in the form to include the correct answers as well as the user's answers?
If so, the better way to handle this is have the correct answers stored somewhere on the server side (i.e. in a database or in the CGI script that processes the form data itself). If you embed the answers in the HTML somewhere, it's quite easy for the user to cheat.
If, for whatever reason, you're stuck on an HTML solution, you can code a hidden field that corresponds to the correct answer to each question on the form:
<form action="myscript.cgi" method="post">
<!-- Questions -->
<pre>
1. What is 1 + 1?
3 <input type="radio" name="q1" value="3">
2 <input type="radio" name="q1" value="2">
-33.5 <input type="radio" name="q1" value="33.5">
2. What is 1 - 1?
97 <input type="radio" name="q2" value="97">
4 <input type="radio" name="q2" value="4">
0 <input type="radio" name="q2" value="0">
<!-- Insert more questions here -->
</pre>
<!-- Answers -->
<input type="hidden" name="q1Answer" value="2">
<input type="hidden" name="q2Answer" value="0">
</form>
HTH,
Russ
bobbitts@hotmail.com