Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Mahmoud Farag  >  Email Validation  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Email Validation
Validate a list of e-mail addresses from a file
Author: By
Last change: correcting file path
Date: 2010-04-18 00:36
Size: 216 bytes
 

Contents

Class file image Download
<?php
//include php core class
include('validate.class.php');

$import = new arrayManager('emails.txt');
$true_emails_array $import->execute_class();

// $true_emails_array is ready to add to database 

?>