<input type="checkbox" name="task[]" value"16">
<input type="checkbox" name="task[]" value"26">
<input type="checkbox" name="task[]" value"56">
$tasks = $_REQUEST['task'];
print_r($tasks);
but I only get an array that tells me if the checkbox's are on - I need the values???
please help