Hi this is code to display the list of values with an checboxes
now i want to store the values selected into database. i want the php tag how to store the array of values which have been selected pls help me out..............
$result = mysql_query("SELECT * FROM service_type ");
while($row = mysql_fetch_array($result))
{
?><input type="Checkbox" name="b[]" value=""> <?echo $row['servicet'];
echo "<br />";
}
}