Created
March 11, 2015 16:47
-
-
Save techjewel/38ee2f0badf9d4e57978 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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