Tomo Posted December 12, 2006 Share Posted December 12, 2006 I'm installing a mod on a game for a friend but I'm not really good with MySQL, but I guess you have to learn some time.The readme contains the following:[code]insert and new field into USERS with the followingwillmax (int)11 default 100run this queryCREATE TABLE `proposals` ( `id` int(11) NOT NULL auto_increment, `proposer` int(11) NOT NULL default '0', `proposed` int(11) NOT NULL default '0', PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=110 ;[/code]Can someone explain what I have to do? I've found the USERS part and I tried to execute a query but I don't think it worked. Link to comment https://forums.phpfreaks.com/topic/30290-basic-mysql-help-noob/ Share on other sites More sharing options...
btherl Posted December 12, 2006 Share Posted December 12, 2006 How are you accessing mysql? Using phpmyadmin? Link to comment https://forums.phpfreaks.com/topic/30290-basic-mysql-help-noob/#findComment-139434 Share on other sites More sharing options...
fenway Posted December 15, 2006 Share Posted December 15, 2006 Yes, where are you executing this from, and how can you tell it didn't work? Link to comment https://forums.phpfreaks.com/topic/30290-basic-mysql-help-noob/#findComment-142092 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.