> $arr = array(); > $arr = $HTTP_POST_VARS; // or is it $arr[] = $HTTP_POST_VARS; Please note that there is no reason to declare $arr as an array (and create new array). $arr = $_POST copies the $_POST array to the new variable $arr. --Daniel