Answers for "First CGI program"

0

First CGI program

#!/usr/bin/perl

print "Content-type:text/html\r\n\r\n";
print '<html>';
print '<head>';
print '<title>Hello Word - First CGI Program</title>';
print '</head>';
print '<body>';
print '<h2>Hello Word! This is my first CGI program</h2>';
print '</body>';
print '</html>';
Posted by: Guest on April-24-2022

Code answers related to "First CGI program"

Python Answers by Framework

Browse Popular Code Answers by Language