Perl CGI setting headers

 #!/usr/bin/perl -wT

use strict;
use warnings;

use CGI qw(:standard);

print header('text/plain', '404 Not Found');

print "Move along, nothing to see here\n";

At promp, execute: curl -i url-to-script

which returns:

HTTP/1.1 404 Not Found
Date: Fri, 04 Oct 2013 14:14:58 GMT
Server: Apache
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/plain; charset=ISO-8859-1

Move along, nothing to see here

#perl - #programming

From JR's : articles
59 words - 454 chars
created on - #
source - versions

Related articles
Perl conditional loading modules - Oct 02, 2014
Quotes in Perl - Oct 12, 2013
Web and mobile development using Perl, HTML5, CSS3, and JavaScript - May 28, 2013
Perl code to create random string of characters - Feb 09, 2015
Interview with Mojo Mail author - November 2002 - Jul 18, 2014
more >>



A     A     A     A     A

© 2013-2017 JotHut - Online notebook

current date: May 20, 2024 - 7:59 a.m. EDT