In Cleanser_step3.php, you are going to want to do two steps
Loop through the key/value pairs in the $_POST variable and find all the keys that match Col###
Any time you find a match, you are going to want to add it to an array stored in a persistent session variable (which I have chosen to call "radio_storage" but you can call it anything you want). Since that session variable may or may not exist when you start, you have to check to see if it exists before you start.
// create the array if it doesn't exist
if (!isset($_SESSION['radio_storage'])) {
$_SESSION['radio_storage'] = array();
}
// loop through all the post variables and see if any radio buttons were clicked
foreach ($_POST as $k=>$v) {
if (preg_match("/^Col[0-9]+$/",$k)) {
// add it to the array if it's not already in the array
if (!in_array($v,$_SESSION['radio_storage']) {
$_SESSION['radio_storage'][] = $v;
}
}
}