|
id
action
reason
date1
are the table structure for "log"
CREATE TABLE `log` (
`id` smallint(255) NOT NULL auto_increment,
`action` varchar(255) NOT NULL default '',
`reason` varchar(255) NOT NULL default '',
`date1` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
My View Logs function does not work since the variable names are wrong. I need help replacing them with id, action, reason and date1.
|