Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Re: CGI and Submit

by earthboundmisfit (Chaplain)
on Sep 26, 2001 at 14:59 UTC ( [id://114782]=note: print w/replies, xml ) Need Help??


in reply to Re: CGI and Submit
in thread CGI and Submit

Assuming you don't have a lot of experience with the CGI module and you're having trouble getting the page to display, I'll just add that a common cause for troubles is the content type set incorrectly. You need to call the header() function to set this. Also, you don't say what OS you use, but since the *nix way is covered above I thought I'd throw in the Windoze equivalent.
#! C:/Perl -w # too late to run Taint on Win32. See node link at bottom use strict; use CGI qw/:standard/; #for form based applications, you'll need mos +t of the functions #and it's a bit less typing over the function + oriented way. #See CGI.pm docs for more on that. if (param('submit')){ print header, start_html('Thanks for your request'), h2("Submission accepted"), h4("Thank you"), end_html; } else { # do whatever needs doing # most likely you'll be building your form }
Taint for Win32

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-03-29 09:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found