Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
CREATE TABLE `voc2_quiz` (
`id` int(11) unsigned NOT NULL auto_increment,
`question` text NOT NULL,
`answer` varchar(255) NOT NULL default '',
`last_use` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) TYPE=MyISAM