Hi All,
I would like to know how to run the cgi program,so what are the pre requests for the same. Please furnish the steps right from the begining.
Here is sample perl cgi code.
Regards,
Bhuvan
I would like to know how to run the cgi program,so what are the pre requests for the same. Please furnish the steps right from the begining.
Here is sample perl cgi code.
Code:
#!/usr/local/bin/perl # hello.pl -- my first perl script! print "Content-type: text/html\n\n"; print <<"EOF"; <HTML> <HEAD> <TITLE>Hello, world!</TITLE> </HEAD> <BODY> <H1>Hello, world!</H1> </BODY> </HTML> EOF
Regards,
Bhuvan
Comment