pretty easy with php, name your checks this
<input type=check name=check[] value=file1>
then on the next page, be it update or delete, you can use the while, list each as method to do whatever you want with them, like:
while (@list($key, $value) = each($_POST['check']))
{
echo $value . "<br>";
}
that will list all the items you checked