barron
04-27-2006, 06:19 AM
Could anyone please inform me how I do this? I've logged into my Cpanel etc and looked at database parts but it all looks very confussing to me :(
I am following a guide to add on a mod to my forums and it says.
You will need to create a new MySQL table in your forums databse, do this by going into phpMyAdmin or any other means of creating tables and running the following query:
CREATE TABLE IF NOT EXISTS `item_cache` (
`item_name` varchar(100) NOT NULL default '',
`item_link` varchar(100) default NULL,
`item_color` varchar(20) NOT NULL default '',
`item_icon` varchar(50) NOT NULL default '',
`item_html` text NOT NULL,
UNIQUE KEY `name` (`item_name`),
FULLTEXT KEY `data` (`item_html`)
)
Anyone know how I can add this please?
I am following a guide to add on a mod to my forums and it says.
You will need to create a new MySQL table in your forums databse, do this by going into phpMyAdmin or any other means of creating tables and running the following query:
CREATE TABLE IF NOT EXISTS `item_cache` (
`item_name` varchar(100) NOT NULL default '',
`item_link` varchar(100) default NULL,
`item_color` varchar(20) NOT NULL default '',
`item_icon` varchar(50) NOT NULL default '',
`item_html` text NOT NULL,
UNIQUE KEY `name` (`item_name`),
FULLTEXT KEY `data` (`item_html`)
)
Anyone know how I can add this please?