Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: What filehandle should be used for HTML prints via CGI??

by ptum (Priest)
on Jan 12, 2007 at 18:08 UTC ( [id://594426]=note: print w/replies, xml ) Need Help??


in reply to What filehandle should be used for HTML prints via CGI??

A CGI program in Perl generally prints a header and then simply prints the HTML to STDOUT, as has been noted. A simple (untested) "Hello World!" example follows:

use strict; use CGI; print header(); print start_html(); print h1("Hello, World!"); print end_html();

As noted, no explicit file handle is needed, since your script is simply printing to STDOUT.

Please do follow the advice you've been given and read up on CGI.

Note also that your script needs to be executable by the user under which your webserver runs. This generally means you need to chmod your script to 755 if running under some form of Unix.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://594426]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-20 00:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found