Re: HTTP headers
[prev]
[thread]
[next]
[Date index for 2005/03/20]
Octavian Rasnita wrote:
> Hi,
>
> I have tried the following script under Windows 2000, mod_perl 2, Perl
> 5.8.4:
>
> use strict;
> use CGI;
>
> my $q = new CGI;
>
> print "Content-type: text/html\n\nTestare\n";
> $q->redirect("http://localhost/");
>
try
use CGI();
use strict;
use warnings;
my $q = new CGI;
print $q->redirect("http://localhost/");
instead.
uru
-Dave
 |
 |
Re: HTTP headers
David Dick 07:56 on 20 Mar 2005
|