PHP Classes

File: Docs/Captcha.txt

Recommend this page to a friend!
  Classes of Minh Tien   Codeme PHP Framework   ???   Download  
File: Docs/???
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Codeme PHP Framework
MVC Web application development framework
Author: By
Last change: Update of Docs/Captcha.txt
Date: 10 days ago
Size: 283 bytes
 

 

Contents

Class file image Download
//Check if visitor make request to verify catpcha if(isset($_REQUEST['btnLogin'])) { $captchaStatus=Captcha::verify(); // return true/false; if($captchaStatus) { //do something if captcha is correct } } //Show captcha form in your html page <?php echo Captcha::makeForm(); ?>