PHP Classes

File: example.php

Recommend this page to a friend!
  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: 14 years ago
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

?>