Hi,
Okey. This needs a little bit tehnical background.
You should have a database management tool like myphpadmin which can connect to your database and execute
queries. Here is the create statement. After that you have to edit the table and insert your value.
CREATE TABLE {uc_cities} (
`city_country_id` mediumint(11) NOT NULL DEFAULT '0',
`city_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`city_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`city_id`),
KEY `city_country_id` (`city_country_id`)
)/*!40100 DEFAULT CHARACTER SET UTF8 */;While the cities are not changing often, there is no need to have management interface. May be we can find more simple way to solve this issue.



Joined: 01/23/2008