Re: Help Please
thanks for getting back to me here is what i find in the database
--
-- Table structure for table `cities`
--
CREATE TABLE `cities` (
`cityid` int(11) NOT NULL auto_increment,
`cityname` varchar(255) NOT NULL default '',
`citydesc` longtext NOT NULL,
`cityminlevel` int(11) NOT NULL default '0',
PRIMARY KEY (`cityid`)
) ENGINE=MyISAM ;
INSERT INTO `cities` VALUES('1', 'Default City', 'A standard city added to start you off', 1);
what do i need to change or add to add more cities? thanks again