GIDForums  

Go Back   GIDForums > Computer Programming Forums > MySQL / PHP Forum > PHP Code Library
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 23-Jan-2003, 03:21
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough

[function] Validate Email Addresses I


PHP Code:

<?php

// NAME: validate_email()
// VERSION: 1.0
// AUTHOR: J de Silva
// DESCRIPTION: returns a valid email address (syntax) or
// 'false' if not valid.
// 
// TYPE: function
// --------------------

function validate_email( $email )
{
  $email = trim( $email ); # removes whitespace
  if( !empty($email) ):
    //  validate email address syntax
    if( preg_match('/^[a-z0-9\\_\\.]+@[a-z0-9\\-]+\\.[a-z]+\\.?[a-z]{2,4}$/i', $email, $match) ):
      return strtolower($match[0]); # valid!
    endif;
  endif;
  return false; # NOT valid!
}

// --------------------
// USE:
//
// <?php
// 
// $email = validate_email( $_POST['email'] );
// if( !$email ):
//   echo 'Invalid Email Address Submitted';
//   exit;
// endif;
// 
// # add email to our db...
// 
// ? >

?>

 
 

Recent GIDBlogToyota - 2008 July Promotion by Nihal

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
validate form skyloon MySQL / PHP Forum 3 15-Jul-2003 09:04
send email via local intranet skyloon MySQL / PHP Forum 1 30-Jun-2003 07:15
Anyone recommend a free email service? Garth Farley Open Discussion Forum 14 19-Mar-2003 07:11
Have an email sent to you when Google crawls your PHP site jrobbio MySQL / PHP Forum 5 26-Feb-2003 22:38

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 16:11.


vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.