Login   Register  
PHP Classes
elePHPant
Icontem

File: iCaptca.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Er. Rochak Chauhan  >  iCaptcha  >  iCaptca.sql  >  Download  
File: iCaptca.sql
Role: Documentation
Content type: text/plain
Description: Database Structure
Class: iCaptcha
CAPTCHA validation asking questions about pictures
Author: By
Last change:
Date: 2007-08-20 07:04
Size: 711 bytes
 

Contents

Class file image Download
CREATE TABLE `captcha_info` (
  `cid` int(11) NOT NULL auto_increment,
  `c_ques` varchar(255) NOT NULL default '',
  `c_img_path` varchar(255) NOT NULL default '',
  `is_active` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

-- --------------------------------------------------------


CREATE TABLE `show_captcha` (
  `showid` int(11) NOT NULL auto_increment,
  `cid` int(11) NOT NULL default '0',
  `c_unique_id` varchar(255) NOT NULL default '',
  `c_ans` varchar(255) NOT NULL default '',
  `is_active` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`showid`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1411 ;