How to Refresh PHP Captcha Image on Form using jQuery
Hi, can you please let me know how I can refresh an image captcha generated by PHP?
what i have is an PHP file "captcha.php" which crerats the image on the form and I
I also have following form
- <html>
- <head>
- <title>Test Form</title>
- </head>
- <body>
- <form action="validate.php" method="post">
- Enter Image Text
- <input name="captcha" type="text">
- <img src="captcha.php" /><br>
- <button type="button" id="refresher">Refresh Captcha!</button>
- <input name="submit" type="submit" value="Submit">
- </form>
- </body>
- </html>
Thanks
for your time and comments