comparison _test/test_cgi.pl @ 427:09e0086a82a7 ref20150831 tip

Merge
author cin
date Tue, 15 May 2018 00:51:33 +0300
parents c27434cdd611
children
comparison
equal deleted inserted replaced
426:eed50c01e758 427:09e0086a82a7
1 #!/usr/bin/perl 1 #!/usr/bin/perl
2 use strict; 2 use strict;
3 3
4 use CGI qw(-nph);
5
6 my $q = CGI->new({});
7
8 print $q->header({
9 type => 'text/html',
10 X_My_header => 'some data'
11 });