Login   Register  
PHP Classes
elePHPant
Icontem

File: check-email.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Edgar  >  Check Email  >  check-email.php  >  Download  
File: check-email.php
Role: Example script
Content type: text/plain
Description: check email
Class: Check Email
Verify whether an e-mail address is valid
Author: By
Last change: Updated
Date: 2011-10-02 11:52
Size: 306 bytes
 

Contents

Class file image Download
<?
require_once("check.inc.php");
$email_1="test@test.te";
$email_2="test@testte";

$a=new check_email;
/*Show text ->  [if email is valid]  [if email is invalid]  */
$a->result_txt("This email is valid","This email is invalid");
echo 
$a->start_check($email_1);
echo 
$a->start_check($email_2);
?>