Hi,
Thanks for your fast reply.
Unfortunatelly I am not so profficient at PHP.
I've created a database like this:
id int(11) NOT NULL auto_increment,
question text NOT NULL, //the text of the question
answer_1 text, // the answer 1
answer_2 text, // the answer 2
answer_3 text, // the answer 3
right_value varchar(200) default NULL, //the right answer
picture varchar(200) default NULL, // a picture of the question
PRIMARY KEY (id)
) TYPE=MyISAM AUTO_INCREMENT=3 ;
But I am stucked from here... can you further help me in this?
Thank you,
Lucian.