Hi,
I have the following radion buttons embedded in my PhP code:
echo "<input type=\"radio\" value=\"yes\" name=\"recCall\" checked> Yes";
echo "<input type=\"radio\" value=\"no\" name=\"recCall\"> No";
I want to check if a user selected Yes or No on the same page.
How can I find out if a user selected "yes" or "no" before pressing the Submit button?
Thanks!