have the following options in a formmail
<form>
<input TYPE="checkbox" NAME="talkative" VALUE="4">Talkative<br><br></td>
<input TYPE="checkbox" NAME="forceful" VALUE="1">Forceful<br><br></td>
<input TYPE="checkbox" NAME="calm" VALUE="3">Calm<br><br></td>
<input TYPE="checkbox" NAME="careful" VALUE="2">Careful<br><br></td>
blah blah blah
</form>
would like to add some code where when the submit button is pressed to send the form the user is directed to one of 4 web pages depending on the value of those first four options
for example if has chosen calm with value 3 on submit the browser will redirect to 3.html
in fact I'd like a new window to pop up with 3.html
thanks
<form>
<input TYPE="checkbox" NAME="talkative" VALUE="4">Talkative<br><br></td>
<input TYPE="checkbox" NAME="forceful" VALUE="1">Forceful<br><br></td>
<input TYPE="checkbox" NAME="calm" VALUE="3">Calm<br><br></td>
<input TYPE="checkbox" NAME="careful" VALUE="2">Careful<br><br></td>
blah blah blah
</form>
would like to add some code where when the submit button is pressed to send the form the user is directed to one of 4 web pages depending on the value of those first four options
for example if has chosen calm with value 3 on submit the browser will redirect to 3.html
in fact I'd like a new window to pop up with 3.html
thanks