I placed the following code before the if statement:
while (list($name, $value) = each($HTTP_POST_VARS)) {
echo "$name = $value<br>\n";
}
When I first enter the page they do not show up at all. After I click the submit button I see the following:
UIFName =
UILName =
UILogonID =
UIPassword =
submit = CreateLogon
So, I seem to be coming into the page alright but I'm not entering the if statement. I don't understand why😕