<?php
 
 
//////////////////////////////////////////////////////////////////////////////////////////
 
// CLASS NAME      :  EMAIL PARSER                                                      //
 
// FILE NAME       :  INDEX.PHP                                                            //
 
// LANGUAGE        :  PHP                                                               //
 
// LANGUAGE VERSION: 5.0                                                                //
 
// AUTHOR          :  Mr. Morteza Ghorbani                                              //
 
// EMAIL           :  [email protected]     | [email protected]                   //
 
// VERSION         :  2.4                                                               //
 
// DATE            :  03/05/2008                                                        //
 
// LICENSE         :  GNU/GPL                                                           //
 
//////////////////////////////////////////////////////////////////////////////////////////
 
// What the class does:                                                                 //
 
//////////////////////////////////////////////////////////////////////////////////////////
 
// * Parse String Email Addresses from sequential web pages                             //
 
// * Store parsed emails to a file or screen                                            //
 
//////////////////////////////////////////////////////////////////////////////////////////
 
 
require("email_parser.class.php");
 
$parser = new parser();
 
$parser->setPassword("hello");   // set your favorite password to restrict other's access!
 
    $parser->showForm();        // show Email Parser Form
 
    $parser->parseEmails();      // Parse Emails. Don't worry it will be processed if form submitted ;)
 
 
?>
 
 |