root / htmltest / sites / all / modules / recaptcha / recaptcha-php-1.11 / example-mailhide.php @ a5572547
1 |
<html><body> |
---|---|
2 |
<?
|
3 |
require_once ("recaptchalib.php"); |
4 |
|
5 |
// get a key at http://www.google.com/recaptcha/mailhide/apikey
|
6 |
$mailhide_pubkey = ''; |
7 |
$mailhide_privkey = ''; |
8 |
|
9 |
?>
|
10 |
|
11 |
The Mailhide version of example@example.com is |
12 |
<? echo recaptcha_mailhide_html ($mailhide_pubkey, $mailhide_privkey, "example@example.com"); ?>. <br> |
13 |
|
14 |
The url for the email is: |
15 |
<? echo recaptcha_mailhide_url ($mailhide_pubkey, $mailhide_privkey, "example@example.com"); ?> <br> |
16 |
|
17 |
</body></html> |