Skip to content

Instantly share code, notes, and snippets.

@harddy
Created May 24, 2018 10:33
Show Gist options
  • Save harddy/d82fb5767db29a4810aba83751374486 to your computer and use it in GitHub Desktop.
Save harddy/d82fb5767db29a4810aba83751374486 to your computer and use it in GitHub Desktop.
<?php
$count = count($main_array['fname']);
for($i = 0 ; $i < $count ; $i++ ) {
echo "First Name : " . $main_array['fname'][$i] ."<br>";
echo 'Last Name : ' . $main_array['lname'][$i] ."<br>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment