- Impact
- 7
Hi
I have an article dbase in the form of
-- Table structure for table `articles`
--
CREATE TABLE articles (
id int(11) NOT NULL auto_increment,
category varchar(100) NOT NULL default '',
url varchar(255) NOT NULL default '',
title varchar(255) NOT NULL default '',
author varchar(200) NOT NULL default '',
description text NOT NULL,
articletext longtext NOT NULL,
source varchar(100) NOT NULL default '',
approved tinyint(4) NOT NULL default '1',
PRIMARY KEY (id),
KEY url (url),
KEY category (category),
KEY ndx_approved (approved),
FULLTEXT KEY title (title),
FULLTEXT KEY articletext (articletext)
) TYPE=MyISAM;
Now, i need someone to convert this into the table structure of the script seen at e-text.us. Please PM if you can do this, and only those with knowledge of the script.
I have an article dbase in the form of
-- Table structure for table `articles`
--
CREATE TABLE articles (
id int(11) NOT NULL auto_increment,
category varchar(100) NOT NULL default '',
url varchar(255) NOT NULL default '',
title varchar(255) NOT NULL default '',
author varchar(200) NOT NULL default '',
description text NOT NULL,
articletext longtext NOT NULL,
source varchar(100) NOT NULL default '',
approved tinyint(4) NOT NULL default '1',
PRIMARY KEY (id),
KEY url (url),
KEY category (category),
KEY ndx_approved (approved),
FULLTEXT KEY title (title),
FULLTEXT KEY articletext (articletext)
) TYPE=MyISAM;
Now, i need someone to convert this into the table structure of the script seen at e-text.us. Please PM if you can do this, and only those with knowledge of the script.




