I am trying to get the input from the from (hidden) and then checking to see if it is an affiliate and if so print the name of the affiliate by calling the "sub affiliatehead"
What's wrong?
sub Validate {
if ($FORM{'affiliate'} eq "") {
$found_not = 1;
}
if ($found_not == 1) {
&Header;
&Content;
&Footer;
exit;
}
elsif ($found_not != 1) {
&AffiliateHead;
&Header;
&Content;
&AffiliateFoot;
exit;
}
}
Thanks
What's wrong?
sub Validate {
if ($FORM{'affiliate'} eq "") {
$found_not = 1;
}
if ($found_not == 1) {
&Header;
&Content;
&Footer;
exit;
}
elsif ($found_not != 1) {
&AffiliateHead;
&Header;
&Content;
&AffiliateFoot;
exit;
}
}
Thanks

