Re: [PHP] Checking for a Valid Email String.

2003-03-15 Thread Justin French
on 14/03/03 2:09 AM, -{ Rene Brehmer }- ([EMAIL PROTECTED]) wrote: Jumping in... Jumping in also: http://www.killersoft.com/downloads/pafiledb.php?action=fileid=4 This is a PHP port of a well respected Perl script which CHECKS THE FORMAT OF THE EMAIL ADDRESS AGAINST THE RCF SPEC. I use it

Re: [PHP] Checking for a Valid Email String.

2003-03-13 Thread -{ Rene Brehmer }-
Jumping in... On Tue, 11 Mar 2003 20:19:36 -0500 (PET), David E.S.V. wrote about Re: [PHP] Checking for a Valid Email String. what the universal translator turned into this: you mean something like this? //checking if the email is valid if (eregi(^[0-9a-z]([-_.]?[0-9a-z])[EMAIL PROTECTED

Re: [PHP] Checking for a Valid Email String.

2003-03-13 Thread -{ Rene Brehmer }-
On Wed, 12 Mar 2003 14:49:11 +1300, Philip J. Newman wrote about Re: [PHP] Checking for a Valid Email String. what the universal translator turned into this: You have used the ' in sted of the i assume that there is no difference? The difference is that when you use , PHP looks for variables

RE: [PHP] Checking for a Valid Email String.

2003-03-13 Thread Julien Wadin
mars 2003 16:13 À : Philip J. Newman; [EMAIL PROTECTED] Objet : Re: [PHP] Checking for a Valid Email String. On Wed, 12 Mar 2003 14:49:11 +1300, Philip J. Newman wrote about Re: [PHP] Checking for a Valid Email String. what the universal translator turned into this: You have used the ' in sted

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread David E.S.V.
you mean something like this? //checking if the email is valid if (eregi(^[0-9a-z]([-_.]?[0-9a-z])[EMAIL PROTECTED]([-.]?[0-9a-z])*\\.[a-z]{2,3}$, $email, $check)) { if ( !getmxrr(substr(strstr($check[0], '@'), 1), $validate_email_temp) ) $mensaje=server not valid; // checking

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread Paul Chvostek
On Wed, 12 Mar 2003, Philip J. Newman wrote: Required: Help for checking for a valid email string. On Tue, Mar 11, 2003 at 08:19:36PM -0500, David E.S.V. wrote: you mean something like this? //checking if the email is valid if (eregi(^[0-9a-z]([-_.]?[0-9a-z])[EMAIL

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread Philip J. Newman
] Checking for a Valid Email String. On Wed, 12 Mar 2003, Philip J. Newman wrote: Required: Help for checking for a valid email string. On Tue, Mar 11, 2003 at 08:19:36PM -0500, David E.S.V. wrote: you mean something like this? //checking if the email is valid if (eregi(^[0-9a-z

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread Philip J. Newman
] Checking for a Valid Email String. On Wed, 12 Mar 2003, Philip J. Newman wrote: Required: Help for checking for a valid email string. On Tue, Mar 11, 2003 at 08:19:36PM -0500, David E.S.V. wrote: you mean something like this? //checking if the email is valid if (eregi(^[0-9a-z

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread chris
]; php- [EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 2:37 PM Subject: Re: [PHP] Checking for a Valid Email String. On Wed, 12 Mar 2003, Philip J. Newman wrote: Required: Help for checking for a valid email string. On Tue, Mar 11, 2003 at 08:19:36PM -0500, David E.S.V. wrote: you mean

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread Justin French
on 12/03/03 12:42 PM, Philip J. Newman ([EMAIL PROTECTED]) wrote: how ever i don't think most ISPs let users pick names with the + sign in it Doesn't matter... if it's a valid format of email address, then it should be validated as legit. I use this:

Re: [PHP] Checking for a Valid Email String.

2003-03-11 Thread Paul Chvostek
The original question was regarding email addresses, not usernames. If an ISP has a policy of requiring each left-hand-side of an email address to be a username, that ISP has a serious problem. On Wed, Mar 12, 2003 at 02:42:04PM +1300, Philip J. Newman wrote: how ever i don't think most ISPs