Still require help with turning my http_post_vars into an array..
Turn the following HTTP_POST_VARS['Whats_your_favorite_fruit?'] = Oranges
into
array ("Whats your favorite fruit?","Oranges");
Use a foreach loop:
foreach ($_POST as $key => $value) { array($key, $value); }
Diego