RE: CGI form Caching problem

2005-05-03 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : : If you're using IE for development, ditch it. : : I would never even thonk about using IE to develop with. I do use it : for further testing, but thats about all. I am using Firefox (PC) : mainly, although The problem still exists on IE (PC

Re: CGI form Caching problem

2005-05-03 Thread tom . kirkpatrick
> use strict; > use warnings; Yes, I have these on as always. > Apache won't cache the result of a script directory AFAIK. So that means it MUST be a browser caching problem right? > If you're using IE for development, ditch it. I would never even thonk about using IE to develop with. I do use

Re: CGI form Caching problem

2005-05-03 Thread Wiggins d'Anconia
[EMAIL PROTECTED] wrote: [snip] > > I have tried sending all sorts of headers to the browser to stop it > caching the page but nothing has made a difference. So perhaps the problem > is not in the browser, but in apache somewhere?? > > anyone ever had this (or a similar) problem!! > Are

Re: CGI form Caching problem

2005-05-03 Thread Brad Lhotsky
use strict; use warnings; Those two will save you a lot of nightmares with inconsistencies from a development standpoint. Apache won't cache the result of a script directory AFAIK. If you're using IE for development, ditch it. Use a browser with a web development extension like mozilla or opera

RE: CGI form Caching problem

2005-05-03 Thread Charles K. Clarkson
[EMAIL PROTECTED] wrote: : I thought this must be to do with browser caching... As, on : submission, the browser seems to send the form back to the : server with the old values in it. But surely, even If the : browser has cached the page, when I alter the value in one o

CGI form Caching problem

2005-05-03 Thread tom . kirkpatrick
In trying to develop a simple perl CGI script, I have run into some kind of caching problem which is making development an absolute nightmare. The script displays a form (using WWW::Form). On submition, it calls itself. If all the fields have been filled out correctly then the user gets redirec

Re: cgi form generates a cronjob

2005-03-25 Thread Bob Showalter
FRANK DELATORRE wrote: Hello, I hope this is the right forum to ask this question: Is it possible to generate a crontab file from a perl driven CGI script? If so, what are the key steps? I've been thinking about how to develop this but for some reason I cannot rectify, in my head, how to edit a cro

Re: cgi form generates a cronjob

2005-03-25 Thread Nestor Florez
2005 9:48 AM To: beginners-cgi@perl.org Subject: cgi form generates a cronjob Hello, I hope this is the right forum to ask this question: Is it possible to generate a crontab file from a perl driven CGI script? If so, what are the key steps? I've been thinking about how to develop th

cgi form generates a cronjob

2005-03-25 Thread FRANK DELATORRE
Hello, I hope this is the right forum to ask this question: Is it possible to generate a crontab file from a perl driven CGI script? If so, what are the key steps? I've been thinking about how to develop this but for some reason I cannot rectify, in my head, how to edit a crontab file as www w

Re: A question on Radio buttons in the CGI::Form package

2004-07-27 Thread Wiggins d Anconia
> Hi, > >I am trying to generate radio buttons using the CGI::Form package. > My radio buttons need to be vertically aligned with some other HTML > elements in between them. For e.g. > >Radio 1 > >Radio 2 > >This obviously precludes me from

A question on Radio buttons in the CGI::Form package

2004-07-27 Thread Kasturirangan Rangaswamy
Hi, I am trying to generate radio buttons using the CGI::Form package. My radio buttons need to be vertically aligned with some other HTML elements in between them. For e.g. Radio 1 Radio 2 This obviously precludes me from using the 'radio_group' method as that does

Re: msql + cgi form parse error

2004-01-16 Thread Chris Cosner
This is a follow-up that I have been meaning to post for a month or so. The situation was a misbehaving form on a system I am maintaining. Further investigation of the code for the form revealed other problems, such as improper use of eval. The problem boiled down to -- rewrite or do spot fixes.

Re: msql + cgi form parse error

2003-11-21 Thread Wiggins d Anconia
> If someone could point me in the right direction... > I have a form on a system I am maintaining that works fine most of the > time, but sporadically spits out an error. Users hit the back button, > only to find that the data they had filled in is no longer in the form > (but sometimes it st

msql + cgi form parse error

2003-11-21 Thread Chris Cosner
If someone could point me in the right direction... I have a form on a system I am maintaining that works fine most of the time, but sporadically spits out an error. Users hit the back button, only to find that the data they had filled in is no longer in the form (but sometimes it stays). The sy

CGI form button w/ images

2003-10-06 Thread David Gilden
Hello, Question concerning forms, I have buttons of the type: But I would like to use a button of type: The problem is I need to pass values from the hidden fields to the script. with the any suggestions? Thanks, Dave ( kora musician / audiophile / web master @ cora connection / Ft. Wo

Re:Perl CGI FORM statement

2002-07-03 Thread Maureen E Fischer
To those who emailed me thanks for helping me figure this out. My code doesn't look as pretty. I had to remove all of the PrintTag's and output each line of HTML with a print, double quotes and semicolon, but everything is now working. Maureen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For

need simple CGI form submission code and steps to do

2002-07-02 Thread Amy Kim
Can anyone give me a free source for simple form submission code of CGI? and let me know how to do? CGI template html template for ex.

Re: Perl CGI FORM statement

2002-07-02 Thread Connie Chan
So... I've viewed your code... the only problem is you used so may "" In case, one is enough and all ( just for your case ) However, that's not the Perl stuff, but HTML prob., So I only explain it short =) You can finish your whole script like this, actually the framework should be looking

Re: Perl CGI FORM statement

2002-07-02 Thread John Brooking
Maureen, Personally, I would just print out the raw HTML in this case rather than try to use CGI's form function. Something like (ignore the word wrap, please): print p( "A paragraph with CGI.pm" ); # Now output the plain HTML tags print ""; if( $my_first_condition ) { print " ";

Re: Perl CGI FORM statement

2002-07-02 Thread Connie Chan
Any sample ? and Source Code ? Smiley Connie =) - Original Message - From: "Maureen E Fischer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 03, 2002 12:24 AM Subject: Perl CGI FORM statement > Hello, > My question is about CGI&

Perl CGI FORM statement

2002-07-02 Thread Maureen E Fischer
Hello, My question is about CGI's form statement. I wrote a program that outputs three fields. Two of the three are fields from which one option is selected. The number and type of options presented are based on the user identified in the environmental variables. I got the screen to pri

RE: Capturing signal to cgi form

2002-06-05 Thread Bob Showalter
> -Original Message- > From: Rob Roudebush [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 05, 2002 3:29 PM > To: cgi cgi-list > Subject: Capturing signal to cgi form > > > > Does anyone know how to capture the carriage return to > prevent a user fr

Capturing signal to cgi form

2002-06-05 Thread Rob Roudebush
Does anyone know how to capture the carriage return to prevent a user from accidentally submitting the form by pressing 'return' before they actually finish completing the form? -Rob - Do You Yahoo!? Sign-up for Video Highlights of 2002 FIFA World Cup

Re: CGI Form Submit Buttons

2002-02-06 Thread Brett W. McCoy
On Wed, 6 Feb 2002, Andre` Niel Cameron wrote: > But what about cases of having two image buttons? Does the one that is > clicked default as submit or does this require java script? You give them differnet names and have your script do different things based on the name that was clicked. -- Br

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
ssage- From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:39 PM To: Troy May; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: CGI Form Submit Buttons But what about cases of having two image buttons? Does the one that is clicked default as submit or do

Re: CGI Form Submit Buttons

2002-02-06 Thread Andre` Niel Cameron
://supportmanual.com/ - Original Message - From: "Troy May" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, February 06, 2002 9:45 PM Subject: RE: CGI Form Submit Buttons > type="image" defaults to submit within a form.

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
type="image" defaults to submit within a form. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:34 PM To: [EMAIL PROTECTED] Subject: RE: CGI Form Submit Buttons Doesn't this button need a javascript oncl

RE: CGI Form Submit Buttons

2002-02-06 Thread perl.org
Doesn't this button need a javascript onclick that does a form.submit? Or should the type be submit? -Original Message- From: Troy May [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:15 PM To: Patrick; [EMAIL PROTECTED] Subject: RE: CGI Form Submit Buttons Then

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
ithin a form. -Original Message- From: Andre` Niel Cameron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:17 PM To: Troy May; Patrick; [EMAIL PROTECTED] Subject: Re: CGI Form Submit Buttons > > I personaly have had trouble with this. what exactly tells it that it

Re: CGI Form Submit Buttons

2002-02-06 Thread Andre` Niel Cameron
> > I personaly have had trouble with this. what exactly tells it that it is the submit button and not just a button? Andre -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: CGI Form Submit Buttons

2002-02-06 Thread Troy May
Then just make a submit.gif for what you want to use as the submit image. -Original Message- From: Patrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 5:47 PM To: [EMAIL PROTECTED] Subject: CGI Form Submit Buttons Is there any way to change the way a submit button

CGI Form Submit Buttons

2002-02-06 Thread Patrick
Is there any way to change the way a submit button looks on forms and CGI generated forms. I want to try to have them looking like the other buttons on my site instead of the standard grey buttons that come as default. PAT By the way thanks for all the tips on text editors Check out www.my-pcdoct

Re: cgi & form again

2001-12-11 Thread zentara
On Tue, 11 Dec 2001 15:17:01 +0800, [EMAIL PROTECTED] (Tat Nam) wrote: >Hi, > The following scripts processes the form and write somthings out and then >allow the user to input his/her e-mail address. After input of the e-mail >address, the script write it into a flat file. However, the scrip

Re: cgi & form again

2001-12-10 Thread Tat Nam
) ) { print OUTF "$value\n"; print "Thank you for your enquiries, you'll be contacted shortly\n"; } } close(OUTF); } - Original Message - From: "Mark Bergeron" <[EMAIL PROTECTED]> To: "Tat Nam" <[EMAIL

Re: cgi & form

2001-12-10 Thread Mark Bergeron
How are you calling the form. You might try and including a little of your code so we can see what's going on. -Original Message- From: "Tat Nam"<[EMAIL PROTECTED]> To: "Beginners Perl"<[EMAIL PROTECTED]> Date: Sun Dec 09 23:01:10 PST 2001 Subjec

cgi & form

2001-12-09 Thread Tat Nam
Hi, I'm writing a survey form. A cgi program processes the states of the form and print out somethings and it prompts the user to enter e-mail address in a text box. The user finishes the input of e-mail address. The same cgi program will call another cgi program to process the input email

Re: Re: Multi-page CGI Form

2001-10-17 Thread Mark Bergeron
then searching all over the web for answers. Mark Bergeron' -Original Message- From: "Randal L. Schwartz"<[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: Wed Oct 17 07:57:13 PDT 2001 Subject: Re: Multi-page CGI Form >>>>>> "Justin" == Justin

Re: Multi-page CGI Form

2001-10-17 Thread Randal L. Schwartz
> "Justin" == Justin Howell <[EMAIL PROTECTED]> writes: Justin> OK, I'm a newbie trying to do things in perl that are smarter Justin> than I am. I'm working on a CGI clock-in program for where I Justin> work, and I want it to be one CGI script with multiple pages, Justin> each a step in the

Re: Multi-page CGI Form

2001-10-16 Thread RaFaL Pocztarski
Justin Howell wrote: > OK, I'm a newbie trying to do things in perl that are smarter than I am. > I'm working on a CGI clock-in program for where I work, and I want it > to be one CGI script with multiple pages, each a step in the clocking in > process (gathering different bits of info and confir

Multi-page CGI Form

2001-10-16 Thread Justin Howell
OK, I'm a newbie trying to do things in perl that are smarter than I am. I'm working on a CGI clock-in program for where I work, and I want it to be one CGI script with multiple pages, each a step in the clocking in process (gathering different bits of info and confirming). I got the idea of