0 کاربر و 1 مهمان درحال مشاهده موضوع.
#!/usr/bin/perl -wTuse strict;use CGI;my $query = CGI->new();print $query->header( "txt/html" ), $query->start_html(-title =>"My First",-bgcolor => "#fffcc" ), $query->h1( "this is a pretty lame web page" ), $query->p( "Who is this Ovid guy, anyway?" ), $query->end_html;
#!/opt/lampp/bin/perlprint "Content-Type: text/html\n\n";print "OK";
#!/usr/bin/perl -wTuse strict;use CGI;my $query = CGI->new();print $query -> header( "text/html" ), $query->start_html(-title=>"My First", -bgcolor => "#ffffcc" ), $query -> h1( "this is a pretty lame web page" ), $query -> p( "Who is this Ovid guy, anyway?" ), $query -> end_html;