Somk
Somk

Reputation: 12057

Captcha Non PHP

Does anyone know of any good solutions to implement CAPTCHA on a form that cannot use php?

I am able to use PHP but only in an external file. Javascript anywhere

Upvotes: 0

Views: 1554

Answers (2)

ThiefMaster
ThiefMaster

Reputation: 318808

Use reCAPTCHA. You can validate it using almost any programming language that can access a web service - so every language that contains some way to make network connections.

Upvotes: 3

iamandrus
iamandrus

Reputation: 1430

Are you able to have an external (in the folder, but not affiliated with the form you're trying to use) PHP file, or does it have to be completely PHP-free?

Because I was going to suggest just doing a POST request to that file using JS.

Upvotes: 1

Related Questions