Thanks for trying to help,
1)
I trying to display mysql values of 4 columns "t_audio_ja | t_audio_ca | t_audio_ch | t_audi_en" to string if they have t_audio_[*]==1 without the last comma.
if t_audio_en=1111111111 stands for a DVD which have this sound =
?, ?, EN[6.1 dts-ES], EN[5.1 dts], EN[5.1 dolby S. EX], EN[5.1 dolby digital], EN[2.0 dolby digital], EN[LPCM], EN[stereo], EN[mono],
http://anime.vaxva.com:8080/~data/d15.html
my data structure
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (1, '00000001', '0000001', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (2, '', '', '000000001', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (5, '000101', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (7, '00101', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (8, '00000001', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (9, '0000001', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (10, '', '0000000001', '0000000001', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (11, '000001', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (12, '00000001', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (15, '0000011', '', '0000001', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (43, '0001001', '', '', '');
INSERT INTO `title` (`t_index`, `t_audio_ja`, `t_audio_ch`, `t_audio_ca`, `t_audio_en`) VALUES (64, '0000001', '0000001', '', '');
^^^^^^^
2)
i trying to make a dropdown box which enable to conduct search as <lang=4types> AND <sound_effect=10types>, currently i only able to have messup search box because i wrote my code wrongly
as i having <lang option=4types> OR <sound_effect=40types>
thanks if you read again...