Mercurial > hg > rr-repo
comparison sites/all/modules/recaptcha/recaptcha-php-1.11/example-mailhide.php @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:67ce89da90df | 2:b74b41bb73f0 |
---|---|
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> |