[web] Need to verify that it is a human registering on my site.

Started by
4 comments, last by JackOfAllTrades 14 years, 1 month ago
How do I get one of those boxes which have images of words that the user has to type in? I don't know what they are called or I would have Googled it...
Advertisement
captcha
Quote:Original post by RDragon1
captcha


thank you!
BTW I can't seem to get recaptcha to send it's inputs to the next page, I did it like this:

<form method="get" action="register.php">
<?php
echo recaptcha_get_html($publickey);
?>
<input type="submit" name="submit" value = "submit">
</form>

The inputs are not sent to register.php like they are suppose to be...
It probably depends on what recaptcha_get_html does. You should show the resulting html source rather than php.
But the <input> tag is not closed in your example, that could be a reason.
I had everything encapsulated into a table, somehow that was the problem, going to have to use DIVs.

This topic is closed to new replies.

Advertisement