Spiele Mod
Verfasst: 27.11.2007 12:24
Gibts für phpBB3 schon einen Mod wo man ne Spiele Seite ins Forum setzten kann?
thx und lg
thx und lg
Code: Alles auswählen
SQL-Befehl:
CREATE TABLE phpbb_ar_categories(
category_id mediumint( 8 ) unsigned NOT NULL AUTO_INCREMENT ,
category_name varchar( 255 ) COLLATE utf8_bin NOT NULL default '',
PRIMARY KEY ( category_id )
)DEFAULT CHARSET = utf8 COLLATE = utf8_bin
MySQL meldet: Dokumentation
#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 'collate utf8_bin NOT NULL default '',
PRIMARY KEY (category
Code: Alles auswählen
CREATE TABLE phpbb_ar_categories(
category_id mediumint( 8 ) unsigned NOT NULL AUTO_INCREMENT ,
category_name varchar( 255 ) NOT NULL default '',
PRIMARY KEY ( category_id )
)DEFAULT CHARSET = utf8 COLLATE = utf8_bin;
Code: Alles auswählen
COLLATE utf8_bin
Code: Alles auswählen
CREATE TABLE phpbb_ar_categories(
category_id mediumint( 8 ) unsigned NOT NULL AUTO_INCREMENT ,
category_name varchar( 255 ) NOT NULL default '',
PRIMARY KEY ( category_id )
)DEFAULT CHARSET = utf8 COLLATE = utf8_bin
MySQL meldet: Dokumentation
#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 'DEFAULT CHARSET = utf8 COLLATE = utf8_bin' at line 5
Code: Alles auswählen
CREATE TABLE phpbb_ar_categories(
category_id mediumint( 8 ) unsigned NOT NULL AUTO_INCREMENT ,
category_name varchar( 255 ) NOT NULL default '',
PRIMARY KEY ( category_id )
);