MySQL_Query schlägt fehl

xelluloid

Grünschnabel
Code:
$create_tables = <<<TABLES
CREATE TABLE IF NOT EXISTS ´cop_player´ (
´PID´     TINYINT UNSIGNED NOT NULL AUTO_INCREMENT,
´mail´    VARCHAR(255) NOT NULL UNIQUE,
´gender´  VARCHAR(1) NOT NULL,
´age´     TINYINT UNSIGNED NOT NULL,
´passwd´  VARCHAR(32) NOT NULL,
PRIMARY KEY (´PID´)
)
TABLES;

mysql_query($create_tables) or die("Konnte Tabllen nicht anlegen: " . mysql_error());

Mein Server gibt dann folgendes aus
Konnte Tabllen nicht anlegen: 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 '´cop_player´ ( ´PID´ TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, ´mail´ V' at line 1

Wenn ich den Text ganz normal inne MySQL-query schreibe, klappt alles einwandfrei, wraum hier nicht?
 
So wie ich das sehe, sind bei Dir einfache nur die Akzentzeichen falsch!

Du benutzt Akut (´), aber MySQL braucht Grave (`), z. B. `cop_player` und nicht ´cop_player´.
 
Zurück