contoh menggunakan checkbox
<?php
if(!empty($_POST)){
//looping pada checkbox yang dicentang dan lakukan aksi tertentu
foreach($_POST['nim'] as $nim){
//lakukan sesuatu
}
}
?>
<form method="post" action="">
<table>
<tr>
<td><input type="checkbox" value="0001" name="nim[]"/></td><td>0001</td>
</tr>
<tr>
<td><input type="checkbox" value="0002" name="nim[]"/></td><td>0002</td>
</tr>
<tr>
<td><input type="checkbox" value="0003" name="nim[]"/></td><td>0003</td>
</tr>
<tr>
<td><input type="checkbox" value="0004" name="nim[]"/></td><td>0004</td>
</tr>
</table>
<input type="submit"/>
</form>