I need to insert all variables sent with post, they were checkboxes each representing an user.
If I use GET I get something like this:
?19=on&25=
you should be able to access them from $_POST variable:
$_POST
foreach ($_POST as $param_name => $param_val) { echo "Param: $param_name; Value: $param_val\n"; }