summaryrefslogtreecommitdiff
path: root/recaptcha-php/example-mailhide.php
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2014-11-12 12:15:31 -0600
committerwushin <pasekei@gmail.com>2014-11-16 21:23:44 -0600
commit294e5d28e70d1709520c3fbb78464edb557f638b (patch)
tree6e8dc2a26e61bfe6ba61af731208fc07a8b2536e /recaptcha-php/example-mailhide.php
parente41baa4c3aeb5f2b05fb928c1bf13e6a9bb130a7 (diff)
downloadwebsite-294e5d28e70d1709520c3fbb78464edb557f638b.tar.gz
website-294e5d28e70d1709520c3fbb78464edb557f638b.tar.bz2
website-294e5d28e70d1709520c3fbb78464edb557f638b.tar.xz
website-294e5d28e70d1709520c3fbb78464edb557f638b.zip
wikimedia extension commit
closes #7
Diffstat (limited to 'recaptcha-php/example-mailhide.php')
-rw-r--r--recaptcha-php/example-mailhide.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/recaptcha-php/example-mailhide.php b/recaptcha-php/example-mailhide.php
deleted file mode 100644
index d08622c..0000000
--- a/recaptcha-php/example-mailhide.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<html><body>
-<?
-require_once ("recaptchalib.php");
-
-// get a key at http://www.google.com/recaptcha/mailhide/apikey
-$mailhide_pubkey = '';
-$mailhide_privkey = '';
-
-?>
-
-The Mailhide version of example@example.com is
-<? echo recaptcha_mailhide_html ($mailhide_pubkey, $mailhide_privkey, "example@example.com"); ?>. <br>
-
-The url for the email is:
-<? echo recaptcha_mailhide_url ($mailhide_pubkey, $mailhide_privkey, "example@example.com"); ?> <br>
-
-</body></html>