I'm not sure as to proper naming scheme, so bear with me...
When I parse my input line, the url thingy,
http://www...stuff....cgi?newuser, the if statement works and jumps to the
correct subroutine which displays an html page with a form. When this form
is submitted it goes to http://www...stuff....cgi?saveuser, howeever when
parsed it never reaches its elsif statement. Here's an excerpt:
&parse_input($keyword);
&print_header;
if ($keyword{'newuser'})
{
&newapp;
}
elsif ($keyword{'saveuser'})
{
&verifynewuser;
}
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]