Archive for July, 2007

Can you spot a phising attempt?

Saturday, July 28th, 2007

Take McAfee’s quiz to find out whether you’re vulnerable to phising…

http://blog.siteadvisor.com/2007/07/
phish_or_fake_take_our_phishin.shtml

Hide Your Email Address Using PHP

Saturday, July 14th, 2007

To hide a mailto: link with PHP, make a PHP web page as shown here and then link to it. (Your server must, of course, be able to handle PHP pages.)

Here is the PHP web page:

<?php
header(”Location: mailto:name@example.com”);
?>
<html><body>
<h4>Thank you!</h4>
</body></html>
(more…)