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

Reply via email to