in reply to Re: Re: Calling a cgi with another cgi
in thread Calling a cgi with another cgi
#!/usr/bin/perl -w use strict; #Your Perl Program here print "Location:http://www.perlmonks.org\n\n"; exit;
The httpd log reports:"...malformed header from script. Bad header=HTTP/1.1 302 Moved:..."#!/usr/bin/perl -w use strict; ##Your Perl Program here print "HTTP/1.1 302 Moved\n"; print "Location:http://www.perlmonks.org\n\n"; exit;
|
|---|