in reply to Re: Re: cgi page not showing
in thread cgi page not showing
caedes is right, since you once write a header you cannot write a second one, but in my experience a mistakenly written second header would then just occur as plain text, but that might differ depending on the default mime-type setting of the webserver.my $cgi = new CGI; # get the User my $user = new GWAK::User(); # did it work ? if (!$user) { # if not go to login page print $cgi->redirect("insert your login_url"); } else { # or proceed print $cgi->header(); ... }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: cgi page not showing
by amphiplex (Monk) on Jul 01, 2002 at 09:25 UTC | |
by little (Curate) on Jul 01, 2002 at 09:28 UTC |