Home > Net >  How to print hash values using perl CGI
How to print hash values using perl CGI

Time:09-17

I'm new to perl CGI and trying to print hash data to html using perl CGI. Below is my code.

#!/usr/bin/perl

use strict;
use warnings;
use CGI ':standard';
use CGI::Carp qw(fatalsToBrowser warningsToBrowser);

our            
  • Related