Here is what I have now:I've seen some simplify this code using these... ||PHP Code:<?
// check to see if the form is completed
if ($first_name==""); {
echo("You need to provide your first name!");
}
elseif ($last_name==""); {
echo("You need to provide your last name!");
}
?>
Can someone show me how to do it?
Thanks
