sticksoon
Results
2
comments of
sticksoon
How to verify if the captcha image is equal with input So if in image is : 7m34z And user type: 7m34z , This is ok otherwise error! How to...
@claviska , I have try the following code: ``` if($_SESSION['captcha']['code'] === $captcha) { echo "good"; } else { echo "bad"; } ``` So $captcha is the variable from which client...