Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP - How can I do my own human verification?

Tags:

php

captcha

I'd like to make my own php script for the human verification . Like an easy series of numbers/letters (captcha), nothing special.

Suggestion? Tips? Things to keep in mind?

like image 690
markzzz Avatar asked Jan 21 '23 06:01

markzzz


1 Answers

You could use a captcha service such as recaptcha to check for a human.

Or create your own using an image library and storing the answers in a database and giving the names of the image file something that cannot be traced back to the word, you might need to make the words fuzzy as bot can use ocr.

another novel approach i saw was someone using an ascii art captcha like this

http://www.network-science.de/ascii/

like image 168
Joseph Le Brech Avatar answered Jan 28 '23 23:01

Joseph Le Brech