I hope this is of any use - I took it from MySQL Manual:
#!/usr/bin/perl -w
use CGI qw(:standard); #Uses the CGI.pm module
$mycgi = new CGI; #Creates a CGI object (sort of a gateway) for the form
data
@fields = $mycgi->param; #Retrieves the name of the form fields
print header, start_html('CG
"Aman Raheja" <[EMAIL PROTECTED]> writes:
> Hi everyone
> I have a situation here. I have to do it this way, becuase that's how the
> framework is.
> When I submit a form, it is processed by abc.cgi.
> Now this abc.cgi has to be a frame. The main page is xyz.cgi, with a header,
> a left frame an
> Hi all
> I am trying to send a mail with the following code and the last print
> statement doesn't print, ie, the mail is not sent.
> This code is called on submitting a form on the web
>
> open(MAIL, "/usr/sbin/sendmail -oi -t") || die "Can't open mail";
> print MAIL < To:
Hi :
I have the icon and it also says it is running. If I go to the browser and put down my
cgi URL it comes up with the following error.
403.1 Error Forbidden : Execute Access forbidden
This error can be caused if you try to execute a CGI, ISAPI or other
executable program f
when you run perl with the -w flag does perl store all the warnings in a variable,
like $!?
or is $! only errors?
the reason I ask is I am using flash to run a .cgi script then print back the scripts
results to flash, but for testing I want to be able to see some of the warnings I get,
but
This might help if you are using the CGI.pm module.
use CGI::Carp qw(fatalsToBrowser);
-James
-Original Message-
From: Nate Brunson [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 11, 2002 11:23 AM
To: [EMAIL PROTECTED]
Subject: running perl with -w
when you run perl with the -w flag
Please help - I need to password protect my form by COB today. I initially had just a
password field at the bottom to authenticate prior to clicking submit. Is there
anything better - say something that launches when a link is selected to the form??
Nate Brunson <[EMAIL PROTECTED]> wrote:
Rob Roudebush wrote:
> Please help - I need to password protect my form by COB today. I initially had just
>a password field at the bottom to authenticate prior to clicking submit. Is there
>anything better - say something that launches when a link is selected to the form??
are you running