PHP Form Wizard, does not have the feature to add a "CAPTCHA" to your form, but there are various sources that provide this service.
An easy to use one would be reCAPTCHA by Google, because it's JavaScript embedded, meaning there is little work for you to do in order to add this security to your registration form.
Since there is no work from your server side to add this, Google uses their servers for this to work, follow the steps bellow to successfully embed reCAPTCHA on your form.
-
Register a key for your website(s) with Google.
-
Embed the code bellow(in your form), but edit your_public_key
with the key you just received from finishing step 1.
<script type="text/javascript"
src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
If done right, you should now see a CAPTCHA prompt appear on your form.
For more information you can check their official website here.