- or download this
~/perl_programs$ ./my_prog.pl name1=value1&name2=value2
[1] 462
...
</ul>
</body>
</html>(HANGS RIGHT HERE!!)
- or download this
~/perl_programs$ ./my_prog.pl name1=value1 name2=value2
Content-Type: text/html; charset=ISO-8859-1
...
</ul>
</body>
</html>~/perl_programs$
- or download this
~/perl_programs$ ./my_prog.pl name1=value1;name2=value2
Content-Type: text/html; charset=ISO-8859-1
...
</ul>
</body>
</html>~/perl_programs$
- or download this
#!/usr/bin/env perl
use strict;
use warnings;
...
$q->start_html;
print Dump;
print $q->end_html;
- or download this
$ perl -v
...
$ perl -MCGI -e 'print $CGI::VERSION'
3.59