how to get the output of .cgi file in browser?
this is the code i am using:
this is the code i am using:
Code:
#!/usr/bin/perl ;
use CGI;
my $cgi = CGI->new();
print $cgi->a(
{-href => "http://www.google.com/"},
"ask me."
);
Comment