Jump to content

tables


help me please

Recommended Posts

hi my install.php creates two tables ( supposed to be three ).

 

so i have to create the other one, but its realy hard to understand so can some1 please help

 

heres the script part.

 

mysql_query("CREATE TABLE banned (ip varchar(255) NOT NULL,reason varchar(255) NOT NULL,id int(11) NOT NULL auto_increment,PRIMARY KEY  (id))");
//creates this one
mysql_query("CREATE TABLE users (uname varchar(255) NOT NULL,pass varchar(255) NOT NULL,id int(11) NOT NULL auto_increment,PRIMARY KEY  (id))");
//creates this one
mysql_query("CREATE TABLE servers (name varchar(255),port varchar(255),desc text,pass varchar(255), ip varchar(255), ip2 varchar(255), id int(11) auto_increment,PRIMARY KEY  (id))");
^^^^^^ need help making this table 

 

 

thanks

Link to comment
Share on other sites

Take this out, I'm not even sure what it is:

 

desc text,

 

Creating a text field called desc.

 

Personally I would avoid any field names which are SQL used words, and in that case I would try surrounding desc with back ticks (`desc`).

 

All the best

 

Keith

Link to comment
Share on other sites

Take this out, I'm not even sure what it is:

 

desc text,

 

Creating a text field called desc.

 

Personally I would avoid any field names which are SQL used words, and in that case I would try surrounding desc with back ticks (`desc`).

 

All the best

 

Keith

 

Right, for some reason I thought he was trying to do something else...  "desc" is a reserved word so that is probably your problem, it would be nice if you posted the error.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.