1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# phpMyAdmin MySQL-Dump
# version 2.2.6
# http://phpwizard.net/phpMyAdmin/
# http://www.phpmyadmin.net/ (download page)
#
# Host: localhost:3306
# Generation Time: May 15, 2016 at 05:45
# Server version: 5.00.95
# PHP Version: 5.2.17
# Database : `abouc`
# --------------------------------------------------------
#
# Table structure for table `jos_quiz_t_question`
#
CREATE TABLE jos_quiz_t_question (
c_id int(10) unsigned NOT NULL auto_increment,
c_quiz_id int(10) unsigned NOT NULL default '0',
c_point tinyint(3) unsigned NOT NULL default '0',
c_attempts tinyint(3) unsigned NOT NULL default '1',
c_question text NOT NULL,
c_image varchar(255) NOT NULL default '',
c_type tinyint(4) NOT NULL default '0',
ordering int(11) default '0',
c_right_message text,
c_wrong_message text,
c_feedback int(11) NOT NULL default '0',
cq_id int(11) NOT NULL default '0',
c_ques_cat int(11) NOT NULL default '0',
c_random char(1) NOT NULL default '0',
c_partial tinyint(4) NOT NULL default '0',
c_partially_message text NOT NULL,
PRIMARY KEY (c_id),
KEY c_quiz_id (c_quiz_id)
) ENGINE=MyISAM AUTO_INCREMENT=1958 DEFAULT CHARSET=utf8;
#
# Dumping data for table `jos_quiz_t_question`
#
INSERT INTO jos_quiz_t_question VALUES (133, 0, 1, 0, '<div class="question"> <span class="chiffre">PCT - R300.4 - 1.10.3</span>A quelle distance d\'un véhicule immobile ou d\'un obstacle, faut-il placer un sabot? </div> <div style="float:right;font-size:.8em">Source: R300.4 - 1: Mesures à prendre avant et après le mouvement</div>', '', 1, 24, '', '', 0, 0, 44, '1', 0, '');
INSERT INTO jos_quiz_t_question VALUES (137, 0, 1, 0, '<div class="question"> <span class="chiffre">PCT - R300.4 - 1.10.5</span>A quelles conditions, le sabotier peut-il traverser une voie sans respecter la distance de sécurité de 5m? </div> <div style="float:right;font-size:.8em">Source: R300.4 - 1: Mesures à prendre avant et après le mouvement</div>', '', 2, 28, '', '', 0, 0, 44, '1', 0, '');
INSERT INTO jos_quiz_t_question VALUES (135, 0, 1, 0, '<div class="question"> <span class="chiffre">PCT - R300.4 - 1.10.4</span>Dans une voie en courbe, où faut-il placer le sabot? </div> <div style="float:right;font-size:.8em">Source: R300.4 - 1: Mesures à prendre avant et après le mouvement</div>', '', 1, 26, '', '', 0, 0, 44, '1', 0, ''); |
Partager