I emailed him, these are the two tables you have to make:
CREATE TABLE fcof_data (
id int(11) NOT NULL auto_increment,
flashcard_set int(11) NOT NULL default '0',
front text NOT NULL,
back text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM COMMENT='FCoF Flashcard Data';
CREATE TABLE fcof_index (
id tinyint(4) NOT NULL auto_increment,
name text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
fcof does not work with PHP5 though :(
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
I emailed him, these are the two tables you have to make:
CREATE TABLE fcof_data (
id int(11) NOT NULL auto_increment,
flashcard_set int(11) NOT NULL default '0',
front text NOT NULL,
back text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM COMMENT='FCoF Flashcard Data';
CREATE TABLE fcof_index (
id tinyint(4) NOT NULL auto_increment,
name text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;
fcof does not work with PHP5 though :(
I created the tables, but nothing happens when I try to create a card.