RE: [PHP] email validation string.

2007-01-20 Thread tedd
At 5:54 PM +0200 1/19/07, WeberSites LTD wrote: Top Ajax : I meant that at the top of WeberDev.com there is an Ajax search box that you can use to search for email validation and see many related code examples to choose from. berber berber: Your original post was clear enough for me to

Re: [PHP] email validation string.

2007-01-20 Thread tedd
On Thu, Jan 18, 2007 at 01:40:36PM -0700, Don wrote: I'm trying to get this line to validate an email address from a form and it isn't working. if (ereg([EMAIL PROTECTED],$submittedEmail)) The book I'm referencing has this line if (ereg([EMAIL PROTECTED],$submittedEmail)) Anyway.. I

Re: [PHP] email validation string.

2007-01-20 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-20 08:53:32 -0500: I picked this up in my travels. function validate_email($email) { // Create the syntactical validation regular expression $regexp = ^([_a-z0-9-]+)(\.[_a-z0-9-]+)*@([a-z0-9-]+)(\.[a-z0-9-]+)*(\.[a-z]{2,4})$; One of my email

Re: [PHP] email validation string.

2007-01-20 Thread tedd
At 3:04 PM + 1/20/07, Roman Neuhauser wrote: # [EMAIL PROTECTED] / 2007-01-20 08:53:32 -0500: I picked this up in my travels. function validate_email($email) { // Create the syntactical validation regular expression $regexp =

Re: [PHP] email validation string.

2007-01-20 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-20 09:22:00 -0500: At 3:04 PM + 1/20/07, Roman Neuhauser wrote: One of my email addresses is [EMAIL PROTECTED] Thanks, I'll add that to my kill list. Vietnam vet... Old habits don't go away easily huh? -- How many Vietnam vets does it take to screw in a

Re: [PHP] email validation string.

2007-01-20 Thread tedd
At 3:47 PM + 1/20/07, Roman Neuhauser wrote: # [EMAIL PROTECTED] / 2007-01-20 09:22:00 -0500: At 3:04 PM + 1/20/07, Roman Neuhauser wrote: One of my email addresses is [EMAIL PROTECTED] Thanks, I'll add that to my kill list. Vietnam vet... Old habits don't go away easily huh? I

RE: [PHP] email validation string.

2007-01-19 Thread WeberSites LTD
Try this : http://www.weberdev.com/get_example-3274.html berber -Original Message- From: Don [mailto:[EMAIL PROTECTED] Sent: Thursday, January 18, 2007 10:41 PM To: php-general@lists.php.net Subject: [PHP] email validation string. I'm trying to get this line to validate an email

Re: [PHP] email validation string.

2007-01-19 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-19 10:55:21 +0200: From: Don [mailto:[EMAIL PROTECTED] I'm trying to get this line to validate an email address from a form and it isn't working. if (ereg([EMAIL PROTECTED],$submittedEmail)) The book I'm referencing has this line if (ereg([EMAIL

RE: [PHP] email validation string.

2007-01-19 Thread WeberSites LTD
, January 19, 2007 12:17 PM To: WeberSites LTD Cc: 'Don'; php-general@lists.php.net Subject: Re: [PHP] email validation string. # [EMAIL PROTECTED] / 2007-01-19 10:55:21 +0200: From: Don [mailto:[EMAIL PROTECTED] I'm trying to get this line to validate an email address from a form and it isn't

Re: [PHP] email validation string.

2007-01-19 Thread 'Roman Neuhauser'
Don't top-post. Trim quoted material. Use a mail user agent that doesn't screw up quoting. There's a plugin for Outlook to fix it. Thanks. # [EMAIL PROTECTED] / 2007-01-19 12:15:15 +0200: From: Roman Neuhauser [mailto:[EMAIL PROTECTED] # [EMAIL PROTECTED] / 2007-01-19 10:55:21 +0200: Try

Re: [PHP] email validation string.

2007-01-19 Thread Nuno Oliveira
1. Why did you remove the backslash? (the original was correct) I have a regular expression tester plugin in firefox and it validates Ok with the expression he provided. If I add the second (original) backslash it won't validate emails anymore. Also, from my little knowledge of Red.Exp. the

Re: [PHP] email validation string.

2007-01-19 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-19 14:46:04 +: 1. Why did you remove the backslash? (the original was correct) I have a regular expression tester plugin in firefox and it validates Ok with the expression he provided. JavaScript is *not* PHP. -- How many Vietnam vets does it take to

Re: [PHP] email validation string.

2007-01-19 Thread Nuno Oliveira
1. Why did you remove the backslash? (the original was correct) I have a regular expression tester plugin in firefox and it validates Ok with the expression he provided. JavaScript is *not* PHP. As far as I can read, I never talked about JavaScript... Maybe the fact that I talked about a

RE: [PHP] email validation string.

2007-01-19 Thread WeberSites LTD
1:47 PM To: WeberSites LTD Cc: 'Don'; php-general@lists.php.net Subject: Re: [PHP] email validation string. Don't top-post. Trim quoted material. Use a mail user agent that doesn't screw up quoting. There's a plugin for Outlook to fix it. Thanks. # [EMAIL PROTECTED] / 2007-01-19 12:15:15 +0200

RE: [PHP] email validation string.

2007-01-19 Thread bruce
, January 19, 2007 2:17 AM To: WeberSites LTD Cc: 'Don'; php-general@lists.php.net Subject: Re: [PHP] email validation string. # [EMAIL PROTECTED] / 2007-01-19 10:55:21 +0200: From: Don [mailto:[EMAIL PROTECTED] I'm trying to get this line to validate an email address from a form and it isn't

Re: [PHP] email validation string.

2007-01-19 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-19 15:43:32 +: 1. Why did you remove the backslash? (the original was correct) I have a regular expression tester plugin in firefox and it validates Ok with the expression he provided. JavaScript is *not* PHP. As far as I can read, I never talked

Re: [PHP] email validation string.

2007-01-19 Thread Nuno Oliveira
Where can I check out the plugin? Maybe I shouldn't have mentioned plugin and firefox... It's not a plugin for firefox like other firefox's plugins... In fact, when I downloaded somewhere arround the web the name of the thing (won't call it plugin again) was Site Programmer Plugin Assistant

Re: [PHP] email validation string.

2007-01-18 Thread Nick Stinemates
I just got this from: http://php.net/preg_match ?php if(eregi (^[[:alnum:[EMAIL PROTECTED],6}$, stripslashes(trim($someVar { echo good; } else { echo bad; } ? Hope it works out for you. - Nick Stinemates On Thu, Jan 18, 2007 at 01:40:36PM -0700, Don wrote: I'm trying to get this line

Re: [PHP] email validation string.

2007-01-18 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2007-01-18 06:07:24 -0800: I just got this from: http://php.net/preg_match ?php if(eregi (^[[:alnum:[EMAIL PROTECTED],6}$, stripslashes(trim($someVar That would reject many of my email addresses. This is more in line with the standards:

RE: [PHP] email validation (no regex)

2005-09-21 Thread Michael Sims
Jim Moseby wrote: There's no requirement for an MX-record, so you'd need to check the A-record ($domain) too. Excellent answer. No requirement for MX record? [showing my ignorance] How does email routing happen if there is no mail exchanger in the zonefile for a particular domain?

Re: [PHP] email validation (no regex)

2005-09-21 Thread cron
As an admin I would assume this as spammers trying to get some emails and I would block this on the firewall. - Original Message - From: Michael Sims [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Wednesday, September 21, 2005 4:22 PM Subject: RE: [PHP] email validation

Re: [PHP] email validation regex

2005-09-16 Thread Kevin Waterson
This one time, at band camp, bruce [EMAIL PROTECTED] wrote: hi.. looking for a good/working/tested php email validation regex that conforms to the rfc2822 standard. This will be fun, everybody has their own which is always best. No two people will agree what is correct method and will

RE: [PHP] email validation regex

2005-09-16 Thread bruce
Message- From: Kevin Waterson [mailto:[EMAIL PROTECTED] Sent: Friday, September 16, 2005 8:08 AM To: php-general@lists.php.net Subject: Re: [PHP] email validation regex This one time, at band camp, bruce [EMAIL PROTECTED] wrote: hi.. looking for a good/working/tested php email validation

Re: [PHP] email validation regex

2005-09-16 Thread Nuno Pereira
bruce wrote: hi.. looking for a good/working/tested php email validation regex that conforms to the rfc2822 standard. a lot of what i've seen from google breaks, or doesn't follow the standard! any ideas/thoughts/sample code/etc... I use this code to build the regex

Re: [PHP] email validation regex

2005-09-16 Thread John Nichel
bruce wrote: hi.. looking for a good/working/tested php email validation regex that conforms to the rfc2822 standard. a lot of what i've seen from google breaks, or doesn't follow the standard! any ideas/thoughts/sample code/etc... Didn't we just have this flame war about a month ago? Is

Re: [PHP] email validation regex

2005-09-16 Thread Jordan Miller
What do you mean? What's wrong with top posting? ;) Jordan On Sep 16, 2005, at 11:31 AM, John Nichel wrote: bruce wrote: hi.. looking for a good/working/tested php email validation regex that conforms to the rfc2822 standard. a lot of what i've seen from google breaks, or doesn't follow

Re: [PHP] email validation regex

2005-09-16 Thread John Nichel
Jordan Miller wrote: What do you mean? What's wrong with top posting? ;) The bait is on the hook.. -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] email validation regex

2005-09-16 Thread bruce
reel 'em in john but remember.. there's top/bottom/side/spoon/etc for more, head to san francisco!! later.. -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, September 16, 2005 10:19 AM To: php-general@lists.php.net Subject: Re: [PHP] email validation

Re: [PHP] Email validation

2002-06-12 Thread Justin French
There is a great function library on http://killersoft.com/ which was derived from what is widely considered the best email validation script in Perl. It also follows RFC 822 about as close as is possible. [http://www.faqs.org/rfcs/rfc822.html] I was about to start writing something simular,

Re: [PHP] Email validation

2001-03-25 Thread Manuel Lemos
Hello Mike, On 21-Mar-01 01:21:13, you wrote: Hello Again, Can anyone tell me what the best form of Email validation there is? It needs to be quick as open to - and . as possible. Look here for a complete email validation class: http://phpclasses.UpperDesign.com/browse.html/package/13

RE: [PHP] Email validation

2001-03-20 Thread Jason Murray
Can anyone tell me what the best form of Email validation there is? It needs to be quick as open to - and . as possible. We use this one on www.inww.com: ? Function validEmail($emailaddress) { // Decides if the email address is valid. Checks syntax and MX records, // for