This is the DB structure :
PHP Code:
#
# Table structure for table 'links_cat'
#
CREATE TABLE links_cat (
linkcatid int(11) NOT NULL auto_increment,
catorder int(50) NOT NULL default '0',
catname varchar(255) NOT NULL default '',
catbyline text NOT NULL,
PRIMARY KEY (linkcatid)
) TYPE=MyISAM;
#
# Table structure for table 'links_content'
#
CREATE TABLE links_content (
linkid int(11) NOT NULL auto_increment,
categoryid varchar(255) NOT NULL default '',
name varchar(255) NOT NULL default '',
byline text NOT NULL,
content text NOT NULL,
PRIMARY KEY (linkid)
) TYPE=MyISAM;