If you are a do-it-yourself programmer and you want to know how to add image validation to a form on your web site then this is the article for you. While there are many ways to do this, if you follow these steps, you will learn the easiest way to get the job done. Once you have mastered the example here, you will have all the concepts and experience you need to incorporate the final product into your form on your website.
We will need two files. The first file will create the validation image and incorporate the image in a validation form. Here is the step-by-step code for the first file: verify.php
---BEGINNING OF FILE: VERIFY.PHP---
< ?php
// Create an image where width=200 pixels and height=40 pixels
Now we will create a file that will perform the validation using the POST method:
---BEGINNING OF FILE: VALIDATEFORM.PHP---
< ?php
if ($_POST['validation'] == trim($_POST['random'])){
echo "You are validated";
}
else{
echo "Please go back and get validated.";
}
? >
---END OF FILE: VALIDATEFORM.PHP---
IMPORTANT NOTE: Because many free article websites don't support HTML in the body of the article the files above won't work unless you eliminate the space after < and before >. Just do a find and replace all.
That is really all there is to it. You probably noticed that I also went to the trouble of including the DOCTYPE and charset lines in this simple example. I did this as a little reminder to make sure that all of your pages on your website are W3C compliant. One of the biggest mistakes that many webmasters make is to neglect W3C compliance on their web pages. If your web pages are not W3C compliant you will get low search engine rankings. Even worse, if you are advertising, your ads may not be as relevant as they should be! In my other article, I explain W3C compliance and the most common mistakes.