codice:
<input type="checkbox" name="scelta[]" value="1"> FILE 1     
<input type="checkbox" name="scelta[]" value="2"> FILE 2
<input type="checkbox" name="scelta[]" value="3"> FILE 3
e quando recuperarai, in $_POST['scelta'], avrai i valori selezionati:

Codice PHP:
foreach ($_POST['scelta'] as $key=>$value)
 echo 
$value."
"

ciao

PS guarda questo link:
http://it.php.net/variables.predefined
e la pillola:
http://forum.html.it/forum/showthrea...hreadid=245215

ciao