RE: Checking Form data

2002-08-01 Thread Kipp, James
yes, there a number of DOS and exploits using javascript. not sure how serious. i know alot of companies filter out active X and VBscript (mine included) > -Original Message- > From: Jim Lundeen [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 31, 2002 4:49 PM > To: Kipp, James; begin

RE: Checking Form data

2002-08-01 Thread Kipp, James
ahh.. I was not aware the Date::Calc could catch illegal dates like 9/33/2002 i thinks i will use that. and I am also checking out your 'Form data checker' now. THANKS !! > -Original Message- > From: fliptop [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 31, 2002 9:42 PM > To: Kipp,

Weekly list FAQ posting

2002-08-01 Thread casey
NAME beginners-faq - FAQ for the beginners-cgi mailing list 1 - Administriva 1.1 - I'm not subscribed - how do I subscribe? Send mail to <[EMAIL PROTECTED]> You can also specify your subscription email address by sending email to (assuming [EMAIL PROTECTED] is your email addr

Re: Why is not the window printed?

2002-08-01 Thread zentara
On Wed, 31 Jul 2002 15:17:56 +0300, [EMAIL PROTECTED] (Octavian Rasnita) wrote: >I want to print another page that prints "File uploading..." while the file >is uploading. > >Unfortunately I can't do that. >After pressing the upload button, the page remains the same. It only appears >"Opening Pag

Re: Why is not the window printed?

2002-08-01 Thread zentara
On Thu, 01 Aug 2002 11:40:49 -0400, [EMAIL PROTECTED] (Zentara) wrote: Hi again, just to tell you I've had better luck with your script. I tried to flush the stdout when printing "." I think the secret is to force a buffer flush with \n. I tried : select STDOUT; $|=1; print STDOUT "."; but it

Annoying 1

2002-08-01 Thread Kyle Babich
I wrote the attached script not realizing that when I open() files it would return the 1 when it was sucessful. How would I open a file without the 1, or anything else besides the content of the file, being returned? Thank you, -- Kyle index.pl Description: Perl program -- To unsubscribe, e

Re: Annoying 1

2002-08-01 Thread Kyle Babich
Nevermind, I spoke to soon. I just "chop()"ed the 1 off to fix it. On Thu, 1 Aug 2002 21:30:49 UT, "Kyle Babich" <[EMAIL PROTECTED]> said: > I wrote the attached script not realizing that when I open() files it > would return the 1 when it was sucessful. How would I open a file > without the 1,

Re: Annoying 1

2002-08-01 Thread David T-G
Kyle -- ...and then Kyle Babich said... % % I wrote the attached script not realizing that when I open() files it % would return the 1 when it was sucessful. How would I open a file Yep. % without the 1, or anything else besides the content of the file, being % returned? Just don't capture

Re: Annoying 1

2002-08-01 Thread David T-G
Kyle -- ...and then Kyle Babich said... % % Nevermind, I spoke to soon. I just "chop()"ed the 1 off to fix it. Um, now it's empty... bash-2.05a$ cat patient.records "Electronic patient records are becoming tologically reified entities that play the role of epistemic patient an

Re: Annoying 1

2002-08-01 Thread Kyle Babich
Actually, I already fixed this problem with a chop(). To answer your question I put the flock()s there and commented them out incase I do end up writing/appending to the files, which I do plan on doing. On Thu, 1 Aug 2002 17:52:13 -0400, "David T-G" <[EMAIL PROTECTED]> said: > Kyle -- > > ...and

Re: Annoying 1

2002-08-01 Thread Kyle Babich
What do you mean empty? I tried it, it works. When I open the file it adds the 1 as the last character of the file. So when I chop it the 1 gets deleted. On Thu, 1 Aug 2002 18:00:36 -0400, "David T-G" <[EMAIL PROTECTED]> said: > Kyle -- > > ...and then Kyle Babich said... > % > % Nevermind,

Re: Annoying 1

2002-08-01 Thread David T-G
Kyle -- ...and then Kyle Babich said... % % What do you mean empty? I tried it, it works. When I open the file it % adds the 1 as the last character of the file. So when I chop it the 1 % gets deleted. That's only because you print $content at the end of your script -- you're not really prin