Hello all. I really need to get this page to work and I'll be all done. Can anyone please help me. I would really appreciate it. I know this maybe a stupid and easy fix, but I'm new to .php so I'm missing it.
Here is my script:
<form action="<?php echo $editFormAction; ?>" method="POST" name="Newsletter" id="Newsletter" onSubmit="MM_validateForm('EmailAddress','','RisEmail');return document.MM_returnValue">
<p align="center">
<label>
<input type="radio" name="Newsletter" value="Subscribe">
<font color="#00FF00"> Subscribe</font></label>
<font color="#00FF00"><br>
<label>
<input type="radio" name="Unsubscribe" value="Unsubscribe">
Unsubscribe</label>
<br>
</font> </p>
<p align="center"><font color="#00FF00">Email Address:
<input name="EmailAddress" type="text" id="EmailAddress">
</font></p>
<p align="center"><font color="#00FF00">
<input type="submit" name="Submit" value="Submit">
</font> </p>
<input type="hidden" name="MM_insert" value="Newsletter">
</form>
*The problem is when the user goes to select either: Subscribe radio button or Unsubscribe radio button, both buttons stay selected. Is there anyway to make it so that it's either one or the other is selected?
Thanks,
Kyle😕