Re: Validation Error

2002-05-13 Thread drieux
On Sunday, May 12, 2002, at 11:09 , Bill Lyles wrote: > Yes that is correct > - Original Message - > From: "bob ackerman" <[EMAIL PROTECTED]> >> On Sunday, May 12, 2002, at 09:38 PM, Bill Lyles wrote: >> >>> Huh? my complements to bob for the 'translation'... >> i think you are callin

Re: Validation Error

2002-05-12 Thread Bill Lyles
Yes that is correct - Original Message - From: "bob ackerman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 13, 2002 12:56 AM Subject: Re: Validation Error > > On Sunday, May 12, 2002, at 09:38 PM, Bill Lyles wrote: > > > Huh? &g

Re: Validation Error

2002-05-12 Thread John W. Krahn
Bill Lyles wrote: > > Ok here is the whole script, and as I said this was generated bt Perbuilder > 2.0 and the email part was generated by Code Magic. > > [snip code] After seeing this code I'm glad I don't use Perlbuilder. Did you actually pay money for this program? :-) John -- use Perl

Re: Validation Error

2002-05-12 Thread bob ackerman
Original Message - > From: "drieux" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Sunday, May 12, 2002 11:24 PM > Subject: Re: Validation Error > > >> >> On Sunday, May 12, 2002, at 08:13 , Bill Lyles wrote: >> >>> I ha

Re: Validation Error

2002-05-12 Thread Bill Lyles
Huh? - Original Message - From: "drieux" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 12, 2002 11:24 PM Subject: Re: Validation Error > > On Sunday, May 12, 2002, at 08:13 , Bill Lyles wrote: > > > I have been running this directly

Re: Validation Error

2002-05-12 Thread drieux
On Sunday, May 12, 2002, at 08:13 , Bill Lyles wrote: > I have been running this directly from the form in my browser using the > post > method and yes this is the whole script I'm slow, so bare with me here. Let's call your code mycode.cgi and you are calling it in the browser with

Re: Validation Error

2002-05-12 Thread Bill Lyles
I have been running this directly from the form in my browser using the post method and yes this is the whole script - Original Message - From: "drieux" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 12, 2002 10:46 PM Subject: Re: Validation Error

Re: Validation Error

2002-05-12 Thread drieux
On Sunday, May 12, 2002, at 06:44 , Bill Lyles wrote: > Ok here is the whole script, and as I said this was generated bt > Perbuilder > 2.0 and the email part was generated by Code Magic. this is gonna sound like a silly question - but are you testing this at a command line and not from a webP

Re: Validation Error

2002-05-12 Thread Bill Lyles
al) = @_ if @_ ; local ($buf); if ($ENV{'REQUEST_METHOD'} eq 'POST') { read(STDIN,$buf,$ENV{'CONTENT_LENGTH'}); } else { $buf=$ENV{'QUERY_STRING'}; } if ($buf eq "") { return 0 ; } else { @fval=split(/&/,$buf); foreach $i (0

Re: Validation Error

2002-05-12 Thread bob ackerman
On Sunday, May 12, 2002, at 06:13 PM, Bill Lyles wrote: > if ($email !~ /.+\@.+\..+/) { we assume you are assigning something to $email and the email address with the '@' is single quoted so it doesn't try to interpolate. (or you are escaping the '@' in a double quoted string.) otherwise the

Re: Validation Error

2002-05-12 Thread drieux
On Sunday, May 12, 2002, at 06:13 , Bill Lyles wrote: [..] > Everytime I run the form it keeps telling me to enter a valid email > address > wich of course is my own for testing > > Please tell me whats wrong > > $message = "" ; > $found_err = "" ; > > $errmsg = "Please enter a valid email addre