Hi there!
I have created a playlist with multiple checkbox for a jukebox.
now I want to play this or these song in a player that I customized that will hld the value of those selected track. say like..
<PARAM NAME = "filename" VALUE = "<?print "=value of selected track";?>" >
I've stored those tracks in a folder & name in a table.
my list file is like.....
CODE
<tr>
<td width=25% align=center>
<input type=checkbox name="track" value="<? echo $rows['music_no']; ?>">
</td>
<td width=75% align=left>
<? echo $rows['music_name']; ?>
</td>
</tr>
<input type=image src="../images/jukebox/button_playlist.gif" width="55" height="23" border=0>
my table format is like .....
CODE
CREATE TABLE `musiclibrary` (
`music_no` int(11) NOT NULL auto_increment,
`music_name` varchar(100) default NULL,
`file_name` varchar(100) default NULL,
`music_day` decimal(10,0) default NULL,
`cat_id` decimal(10,0) default NULL,
PRIMARY KEY (`music_no`),
UNIQUE KEY `music_no` (`music_no`),
KEY `cat_id` (`cat_id`)
);
please tel me how'll I do that!!
Regards