<?php
/*
Script by Stanga Razvan ([email protected])
* uses Crypt class by Michael Dransfield <[email protected]> for Advanced Anti-Spam
*/
require ("anti-spam.class.php");
require ("crypt.class.php");
$antispam = new AntiSpam;
$crypt = new HTML_Crypt;
echo "Without Name ". $antispam->email ( "[email protected]" );
echo "\r\n\r\n<br>\r\n<br>\r\n\r\n";
echo "Source Code : <br>". htmlentities ( $antispam->email ( "[email protected]" ) );
echo "\r\n\r\n<br>\r\n<br>\r\n\r\n";
echo "With Name ". $antispam->email ( "[email protected]", "Stanga Razvan");
echo "\r\n\r\n<br>\r\n<br>\r\n\r\n";
echo "Source Code : <br>". htmlentities ( $antispam->email ( "[email protected]", "Stanga Razvan" ) );
?>
|