Hi, I'm confusing myself. If I have a form with radio buttons in it, each of the inputs has to have the same name attribute for them to behave as a group, like this:
<input type="radio" name="pctype" value="standard" />
<input type="radio" name="pctype" value="custom" />
so only one button will be pressed. But what does $_POST send to the php script to differentiate them? Does it use the value attribute? And if so, will a piece of code likethis work to give values to the variables in php:
$pctypestandard = $POST['standard'];
$pctypecustom = $POST['custom'];
And if so, will those values be 1 and 0 depending on which button was pressed?
Tim