Mega Code Archive
Categories
/
Php
/
Graphics
Number Verification, used to prevent form auto-completes
First code, the one that generates the code and checks it. Save as "numverify.php". --- "; echo "
Please type the code you see above. (CASE-SENSITIVE)
"; } else { if ($num_ent == $random) { // Af they get it right ... echo "Correct!"; } else {// And if they get it wrong ... echo "Incorrect. Go back and refresh the page for a new code."; } } ?> --- Second code, the one that generates image. Save as "pic.php". ---