ok so what i am trying to do is loop through the POST data to create an array of the data to be used later. this is what i have but when i use is_array it returns not an array. i swear it was working at one point but now im not so sure.
$insertDB = array("");
foreach($_POST as $key => &$value){
$insertDB .= "$key => $value, ";
}
so in the end i have array("$key" => "$value", "$key" => "$value", "$key" => "$value")
thanks in advance