SQL syntax error

Hi, again. :blush:
Im doing this mysql driven shoutbox, everything has gone right, untill now.
I did the database, and now i have to do the table, it looks like this:

CREATE TABLE ‘shoutbox’(
'id’INT( 12 ) NOT NULL AUTO_INCREMENT ,
'username’VARCHAR( 25 ) NOT NULL ,
'email’VARCHAR( 25 ) NOT NULL ,
'message’TEXT NOT NULL ,
'date’VARCHAR( 15 ) NOT NULL ,
'ip’VARCHAR( 25 ) NOT NULL ,
PRIMARY KEY ( ‘id’ )

And I get this error:

[font=Courier New]#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '‘shoutbox’( 'id’INT( 12 ) NOT NULL AUTO_INCREMENT ,
'user[/font]

So I went to the manual, to see the error #1064, and it says this:

Error: 1064 SQLSTATE: 42000 (ER_PARSE_ERROR) Message: %s near ‘%s’ at line %d

Would be very appriciated if someone could help me, solve this error! :slight_smile: