Skip to content

Instantly share code, notes, and snippets.

@techjewel
Created March 11, 2015 16:47
Show Gist options
  • Save techjewel/38ee2f0badf9d4e57978 to your computer and use it in GitHub Desktop.
Save techjewel/38ee2f0badf9d4e57978 to your computer and use it in GitHub Desktop.
<?php
$names = $_POST['name'];
$emails = $_POST['email'];
$user_array = array();
foreach($names as $key => $name)
{
$user_array[$key]['name'] = $name;
$user_array[$key]['email'] = $emails[$key];
}
print_r($user_array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment