colap Posted March 30, 2017 Share Posted March 30, 2017 https://www.phpcaptcha.org/documentation/quickstart-guide/ This is to add secure image and refresh image. <img id="captcha" src="/securimage/securimage_show.php" alt="CAPTCHA Image" /> <input type="text" name="captcha_code" size="10" maxlength="6" /> <a href="#" onclick="document.getElementById('captcha').src = '/securimage/securimage_show.php?' + Math.random(); return false">[ Different Image ]</a> How can I add the audio icon? Like this: https://www.phpcaptcha.org/try-securimage/ Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted March 30, 2017 Share Posted March 30, 2017 They have an example form which demonstrates exactly how everything works. But why waste your time with those toy CAPTCHAs? Google's reCAPTCHA is both more user-friendly and more secure. A lot of times, users just have to click on a button and not solve any stupid challenges at all. Quote Link to comment Share on other sites More sharing options...
colap Posted April 7, 2017 Author Share Posted April 7, 2017 I wanted the phpcaptcha in this format: <div id='captcha_container_1'> <table> <tr> <td>Secure Image:</td> <td>that-securimage</td> </tr> <tr> <td>Type text:</td> <td>the-text-box</td> </tr> </table> </div> <div id='captcha_container_1'> <table> <tr> <td>Secure Image:</td> <td></td> </tr> <tr> <td>Type text:</td> <td><?php echo Securimage::getCaptchaHtml($options); ?></td> </tr> </table> </div> Output: http://imgur.com/a/e8vF8 Securimage::getCaptchaHtml($options); creates layout automatically. Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted April 7, 2017 Share Posted April 7, 2017 This is an open-source project, so you can read the code, adjust it, write your own method, whatever. And again: But why waste your time with those toy CAPTCHAs? Quote Link to comment Share on other sites More sharing options...
colap Posted April 7, 2017 Author Share Posted April 7, 2017 What's wrong using php-captcha? Is it very easy to hack/break php-captcha? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.