Thanks
So since the array already exists I need to array_merge the available arrays:
$a1 = ((isset($_POST["1pcCB"]))?$_POST["1pcCB"]:"");
$a2 = ((isset($_POST["desksetCB"]))?$_POST["desksetCB"]:"");
$PrerequestedPhones = array_merge($a1, $a2);
Then, implode that value to comma delimit and have ready for the Insert
$requestedPhones = ((isset($_POST["PrerequestedPhones"]))?implode(", ", $_POST["PrerequestedPhones"]):"");
I then set the value to be inserted via DA as "$requestedPhones"
Makes sense, but on test I did not find the values inserted. No errors reported , just no values inserted.
It's not that I need set the value to a hidden field is it? Seems that value should be present as the var: $requestedPhones