Problem with $_POST
public php v1 · immutable<HTML><BODY><?phprequire ("common.php");echo ("<B>You have submitted the following:</B>" .NL . NL . // New line constant"Name: " $_POST["applicant"] . NL ."Phone: " $_POST["phone"] . NL ."E-mail: " $_POST["email"] . NL);// Convert to boolean$avail = isset ($avail);echo ("Available immediately: " . ($avail ? "yes" : "no"));?></BODY></HTML>