PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Behrouz Pooladrag   Anti Spam Bot Email by ASCII   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Anti Spam Bot Email
Class: Anti Spam Bot Email by ASCII
Encode e-mail addresses to avoid harvesters
Author: By
Last change:
Date: 15 years ago
Size: 1,810 bytes
 

Contents

Class file image Download
<?php
/**
 +-------------------------------------------------------------------------
 +---------------------->> In The Name Of Allah <<-------------------------
 +-------------------------------------------------------------------------
 | Class AntiIFLSpamBotEmail version 0.0.1 (for php 4)
 | Security Email Print 100% Protected For Spam Bot
 | Anti Span Bot Email by ASCII
 | Author Behrouz Pooladrag (IFLashLord) <Me [at] IFLashLord [dot] Com>
 | Email bugs/suggestions to Me [at] iflashlord.com
 | Copyright (c) 2008 By Behrouz Pooladrag ,IFLashLord Co.
 +-------------------------------------------------------------------------
 | This script has been created and released under
 | the GNU GPL and is free to use and redistribute
 | only if this copyright statement is not removed
 +-------------------------------------------------------------------------
 +--------------| Contact 2 Behrouz Pooladrag |----------------------------
 | Email : Me [ at ] IFLashLord [dot] Com
 | WebSite : http://www.IFLashLord.Com
 | Yahoo : BehrouzPC [at] yahoo.Com
 | G-Mail : FLashLordX [at] gmail.Com
 | Mobile : +98 913 12 777 14
 +-------------------------------------------------------------------------
 | (Zakate Elame Nasher Aan Ast )
 +-------------------------------------------------------------------------
**/

   
include_once("antiSpamEmail-IFLashLord-php5.php");
   
//include_once("antiSpamEmail-IFLashLord-php4.php");


    //Start Example
   
$antiSpambotBehrouzpc=new AntiIFLSpamBotEmail("behrouzpc@yahoo.com"); //start class
   
$EmailForShow=$antiSpambotBehrouzpc->antispambot(0); // for show mode return
   
$EmailForLink=$antiSpambotBehrouzpc->antispambot(1); // for link mode return
   
print "<a href='mailto:".$EmailForLink."'>".$EmailForShow."</a>"; //and Print

?>