Forum Moderators: coopster
Thanks!
[edited by: jatar_k at 9:23 pm (utc) on June 7, 2005]
[edit reason] no urls thanks [/edit]
Personal URLs are not allowed on this forum I`m afraid. However I took a look at your code and a quick example is:
<INPUT NAME="workstatus" TYPE="radio" VALUE="">
Change this to either:
<INPUT NAME="workstatus" TYPE="radio" VALUE="1">
<INPUT NAME="workstatus" TYPE="radio" VALUE="sometext">
IN your code:
$workstatus = $_POST['workstatus'];
Then:
if (empty($workstatus))
{
//error message
}
Hope that helps.
dc