 |
| ::: T4VN Statistics ::: |
PHP Scripts : 35
|
PHP Example : 67
|
PHP Tutorials : 21
|
PHP News : 91
|
Total Coupon : 36
|
Other Tutorials :
|
Member : 167
|
Visitor Online : 1
|
Today Visit: 242
|
Total Visitor : 83027
|
Most Online : 25
|
|
|
 |
Simple Spam Prevention Script
Author : Laughing Boy
This little snippet of code helps protect your e-mail address from spammers and spam-bots.
| PHP Example : |
|
<?php
$addr1 = "mailto:";
$addr2 = "you"; // This is the first part of your e-mail address
$addr3 = "@"; // This is the commat or "at" component of your e-mail adress
$addr4 = "domain"; // This is the domain name of your e-mail address
$addr5 = ".com" // This is the extension the domain for your e-mail address e.g. ".com", ".net" etc..
?>
<!-- This is your code for the actual link -->
<a href="<?php echo "$addr1"; echo "$addr2"; echo "$addr3"; echo "$addr4"; echo "$addr5";?>">link text</a>
<?php
/*
AntiSpam V1.0
Simple PHP script demonstrating variable
application in a PHP environment.
Script Copyright © Jake McMahon 2004
*/
?>
|
|
|
|

|
 |
| ::: Resources ::: |
|
|
| ::: New Templates ::: |
|
| ::: Other Tutorials ::: |
|
|