the error is the table does not exist just run the fowling sql query:
[sql]CREATE TABLE `newsview` (
`feed_id` int(15) NOT NULL auto_increment,
`feed_name` varchar(255) NOT NULL default '',
`orderid` int(10) NOT NULL default '0',
`feed_location` varchar(255) NOT NULL default '',
PRIMARY KEY (`feed_id`),
KEY `feed_name` (`feed_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;[/sql]
|