Hi,
I came across this code..n tried using it...but was not able to run it...
file: hello.cgi
any help is appreciated.
thanks.
I came across this code..n tried using it...but was not able to run it...
file: hello.cgi
Code:
#!/usr/local/bin/perl
use CGI;
$q = new CGI;
print $q->header;
$q->start_html('Hello World');
$q->h1('Hello World');
$q->end_html;
thanks.
Comment