• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

mysql problem

Dumeko

New Member
Joined
Apr 7, 2012
Messages
55
Reaction score
0
when i start a server it starts up but then is spamed by



mysql_real_querry(): select * from z_ots_comunication = 'login'; - mysql error: table 'noobwar.z_ots_communication' doesnt 6)

taking it means that my database doesnt have this table? how do i add it or where should i add it

thanks for the help
 
yeh, i know its in my phpmyadmin, but i do not know what to create it under, oh create a new table

dunno how to create a new table....let me play around with it xD
 
ok i can create a new table, but how do i know what to fill it out as




Field
Type
Length/Values1
Default2


Collation
Attributes
Null
Index
AUTO_INCREMENT
Comments
MIME type
Browser transformation
Transformation options3
 
at the top left corner of the page on phpmyadmin, there is a little link that says SQL, and when you hover over it it says query window, press that and execute this
Code:
CREATE TABLE `z_ots_comunication` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL default '1',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
 
Back
Top