Has anyone added a Captcha on the registration form and login yet? I can't find where to do add the code for the login and I always get a error when doing it to the registration form. Thanks in advance.
This is the code I put in the table of the registration form: ` <?php if (getOption('Use_Captcha')) { $captchaCode=generateCaptcha($img); ?>
Well, your code certainly is not complete. At least you are missing the close tags for the final table division and the table row. Also the closing bracket for the if statement is missing. That latter is probably the source of the error you are getting.
In addtion, there would need to be code somewhere to process and validate the captcha.
Comments
In addtion, there would need to be code somewhere to process and validate the captcha.