>
> This may be because $evalue !=3 and therefore the if block does not execute.
> You need to send the header in all cases. Try changing your if block to:
>
> if ( $evalue == 3 ) {
> my $cookie = $cgi->cookie(CGISESSID => $session->id);
> print $cgi->header( -cookie=>$cookie );
> deploy_page();
> }
> else {
> print $cgi->header;
> }
yes this worked for me , thanks !!
--
Regards
Agnello D'souza
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/