Hi kixe!
Here is the structure of my custom table:
CREATE TABLE IF NOT EXISTS `t_fsk` ( `id_fsk` int(11) NOT NULL AUTO_INCREMENT, `f_fsk_value` int(11) NOT NULL, `f_fsk` varchar(200) NOT NULL, PRIMARY KEY (`id_fsk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
I used the field "f_fsk_value" (values are; 1,2,3,4,5,6) as "option value" and the field "f_fsk" as "option label". My selection will stored correctly into
the database but when I try to edit the page a second time, the selection I made before isn't displayed. I tried the select and selectMulitple Option. Both of
them with the same result. May you have an idea to solve this problem?