View Single Post
  #3  
Old 14th November 2008, 13:28
tunad tunad is offline
Senior Member
 
Join Date: Oct 2008
Posts: 57
Default
thanks

EDIT: now i have this error:

Code:
Table 'spotting_bluefile.captcha' doesn't exist
in /home/spotting/public_html/include/cleanup.php, line 504
pls help

EDIT 2: i resolve my problem.....i create this table:

Code:
CREATE TABLE `captcha` (
`imagehash` varchar(32) NOT NULL default '',
`imagestring` varchar(8) NOT NULL default '',
`dateline` bigint(30) NOT NULL default '0',
KEY `imagehash` (`imagehash`),
KEY `dateline` (`dateline`)
) ENGINE=MyISAM;
Reply With Quote