scusa, ma perchè con questo codice:
while(list($k, $ck) = each($_POST['cck'][$k]))
{
$ck[$k] = $_POST['cck'][$k];
echo"$ck[$k]
";
}


mi dà: Warning: Variable passed to each() is not an array or object

se faccio:
$oo = gettype($_POST['cck']);
print($oo);

mi restituisce: array

dove sbaglio?