sorry i am a newb but i am stuck already, please help!
I have a form that has two radio buttons, both with a name of "terms" and one with a value of "accept" and one with a value of "decline". The form is passed through the post method.
I know == means equality and = assigns a value, but is this right:
if ($terms = $decline)
{
do this
}
or is it
if ($terms == $decline)
{
do this
}
help would be muc appreciated!