Hi All here is my problem:
I have a list that is being generated from a mysql db as checkboxes
ie.
$res = SELECT * FROM...
While($row = mysql_fetch_array($res)) {
echo "<input type=\"checkbox\" name=\"music[]\" ...>";
now if this generates let say 3 boxes
and I decide to check all three box and hit submit
I would want to see a list of these seleted items
How can I do this
this in turns makes an array call music so do I print the items from this array
Thanx for any help
Richie TM