Re: newbie question about print header

2006-03-08 Thread Bill Stephenson
From the CGI.pm docs... Most browsers will not cache the output from CGI scripts. Every time the browser reloads the page, the script is invoked anew. You can change this behavior with the -expires parameter. When you specify an absolute or relative expiration interval with this parameter, som

newbie question about print header

2006-03-08 Thread Mary Anderson
I want to know how to tell my application not to cache. Kevin Meltzer's book and Lincoln Stein's book neatly drop that ball between them. Can I use the cgi.pm header routine and hand it a variable? print header (-no-cache=> 1) .. there are several variants of this --- using -nph->1 its pr

RE: Newbie question

2004-03-01 Thread Bob Showalter
Shalabh wrote: > hi all, Hi. Use a better subject line. >i am searching from a tab delimited text file and it is > returning the line with tabs which contains the search string into an > array named @found_array, now i want to display it on an html page in > a predefined format and for th

Newbie question

2004-03-01 Thread Shalabh
hi all, i am searching from a tab delimited text file and it is returning the line with tabs which contains the search string into an array named @found_array, now i want to display it on an html page in a predefined format and for that i have to split it with tab as the delimiting character

Re: newbie question - re: form validation

2003-06-01 Thread caven
Hi, Marjie You may find a lot of javascript functions to help you go through this problem. BTW, why not use perl+template model, which makes eaiser to use javascirpt in your page. Caven , Made In China -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

RE: newbie question - re: form validation ?JUNK MAIL?

2003-05-30 Thread ted . weston
} # I'm sure you've got the rest. --- .ted -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 6:31 PM To: [EMAIL PROTECTED] Subject: newbie question - re: form validation ?JUNK MAIL? Hi. I'm a newbie: both to this news gr

newbie question - re: form validation

2003-05-30 Thread mst_wake
Hi. I'm a newbie: both to this news group and to land of Perl/cgi :o) I'd appreciate getting some help with a form validation script! I'm working on a conference room reservation form. The html form has fields for name, title of meeting, day/month/year, start time and end time. My current

Re: Creating thumbnails (Newbie Question)...

2002-09-21 Thread Randal L. Schwartz
> "Joel" == Joel Hughes <[EMAIL PROTECTED]> writes: Joel> After you have install image magick, the basic syntax is... Joel> use Image::Magick; Joel> $p = new Image::Magick; Joel> $p->Read(..your main image...); Joel> $p->Scale(width=>$required_width,

RE: Creating thumbnails (Newbie Question)...

2002-09-19 Thread Joel Hughes
rom: Yuen, Alex [mailto:[EMAIL PROTECTED]] Sent: 18 September 2002 14:57 To: 'Perl Beginners - CGI' Subject: Creating thumbnails (Newbie Question)... Hi, Very newbie. I was wondering if it is possible to write a CGI (Perl) program to make a thumbnail page for my website. If so, how would

Re: Creating thumbnails (Newbie Question)...

2002-09-19 Thread fliptop
ot;fliptop" <[EMAIL PROTECTED]> OR:To: "Yuen, Alex" <[EMAIL PROTECTED]> OR:Cc: "'Perl Beginners - CGI'" <[EMAIL PROTECTED]> OR:Sent: Wednesday, September 18, 2002 5:52 PM OR:Subject: Re: Creating thumbnails (Newbie Question)... OR: OR: OR:On Wed, 18

Re: Creating thumbnails (Newbie Question)...

2002-09-18 Thread Wiggins d'Anconia
Thanks. > > Alex > > > >>-- >>From: fliptop[SMTP:[EMAIL PROTECTED]] >>Sent: Wednesday, September 18, 2002 10:52 AM >>To: Yuen, Alex >>Cc: 'Perl Beginners - CGI' >>Subject: Re: Creating thumbnails (Newbie

Re: Creating thumbnails (Newbie Question)...

2002-09-18 Thread Gary Stainburn
On Wednesday 18 Sep 2002 2:56 pm, Yuen, Alex wrote: > Hi, > > Very newbie. > > I was wondering if it is possible to write a CGI (Perl) program to make a > thumbnail page for my website. > > If so, how would I start and use for doing this? > > Thanks. > > Alex Hi Alex, Here's a script based on on

RE: Creating thumbnails (Newbie Question)...

2002-09-18 Thread Yuen, Alex
10:52 AM > To: Yuen, Alex > Cc: 'Perl Beginners - CGI' > Subject: Re: Creating thumbnails (Newbie Question)... > > On Wed, 18 Sep 2002 at 09:56, Yuen, Alex opined: > > YA:I was wondering if it is possible to write a CGI (Perl) program to make > a > YA:t

Re: Creating thumbnails (Newbie Question)...

2002-09-18 Thread fliptop
On Wed, 18 Sep 2002 at 09:56, Yuen, Alex opined: YA:I was wondering if it is possible to write a CGI (Perl) program to make a YA:thumbnail page for my website. YA: YA:If so, how would I start and use for doing this? if you question is how to create a thumbnail from a regular image, then you cou

Creating thumbnails (Newbie Question)...

2002-09-18 Thread Yuen, Alex
Hi, Very newbie. I was wondering if it is possible to write a CGI (Perl) program to make a thumbnail page for my website. If so, how would I start and use for doing this? Thanks. Alex -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Newbie question on data storing

2001-08-22 Thread randy Peterman
Use DBI. Doing your own parsing of files and data is more of a headache than you need. It may depend on your application, but when it comes to file parsing - you're re-inventing the wheel. There are several good Database's out there that are open source. Plus if all your effort is "in house" y

Newbie question on data storing

2001-08-22 Thread G Harper
Hello all, Please bear with me - I realize the answers I seek probably lie elsewhere but I haven't had a lot of luck. I'm building an interface that allows me to input an order number, order type and comments on the order, which are stored into a file using a hash of arrays. I can's find a

Re: newbie question

2001-07-09 Thread Jason Purdy
ot;nila devaraj" <[EMAIL PROTECTED]> To: "Aaron Craig" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 12:29 AM Subject: Re: newbie question > Hi > Thank you for your mail. > > the code is > > #testcgi.cgi > print "

Re: newbie question

2001-07-08 Thread nila devaraj
Hi Thank you for your mail. the code is #testcgi.cgi print "Content-type: text/html\n\n"; print "Hello World\n"; This is WinCGI. should i have to give the Shebang operator? Should i have Perl installed in the server where the Webserver is configured? If so, how will i give the shebang operat

Re: newbie question

2001-07-07 Thread Ryan Gralinski
well really if it is asking you to save to disk, the problem is server side, ask the administrator to fix it.. Ryan On Fri, 6 Jul 2001, nila devaraj wrote: > Hi > i have a webserver that has been configured for CGI > scripting. i placed the HTML file in the required > directory and the cgi pr

Re: newbie question

2001-07-06 Thread Adam Carson
-Original Message- From: "nila devaraj"<[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: Fri Jul 06 02:24:31 PDT 2001 Subject: newbie question >Hi >i have a webserver that has been configured for CGI >scripting. i placed the HTML file in the required >directory and

Re: newbie question

2001-07-06 Thread Mark Bergeron
Is your directory set to scripts access? -Original Message- From: "nila devaraj"<[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Date: Fri Jul 06 02:24:31 PDT 2001 Subject: newbie question >Hi >i have a webserver that has been configured for CGI >scripting. i pla

Re: newbie question

2001-07-06 Thread Rajeev Rumale
D]> Sent: Friday, July 06, 2001 7:23 PM Subject: Re: newbie question > Aaron Craig wrote: > > > > You should always include the code that is giving you the problem when you > > ask a question. It makes it a lot easier for us to help you. Could you > > send your cod

Re: newbie question

2001-07-06 Thread fliptop
Aaron Craig wrote: > > You should always include the code that is giving you the problem when you > ask a question. It makes it a lot easier for us to help you. Could you > send your code? also include what platform (i'm guessing windows) and webserver you are using.

Re: newbie question

2001-07-06 Thread Rajeev Rumale
Message - From: "Aaron Craig" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 06, 2001 6:40 PM Subject: Re: newbie question > You should always include the code that is giving you the problem when you > ask a question. It makes it a lot easier fo

Re: newbie question

2001-07-06 Thread Aaron Craig
You should always include the code that is giving you the problem when you ask a question. It makes it a lot easier for us to help you. Could you send your code? At 02:24 06.07.2001 -0700, nila devaraj wrote: >Hi >i have a webserver that has been configured for CGI >scripting. i placed the H

newbie question

2001-07-06 Thread nila devaraj
Hi i have a webserver that has been configured for CGI scripting. i placed the HTML file in the required directory and the cgi program in the wincgi directory of the webserver. The problem i am facing is- if i submit my form i am getting the download/save dialog box.If i say open it is opening a