Hello all, I have one two dimensional arrays like: $array=array[0]=>Array ( [0] => "Title" [1] => "First Name" [2] => "Middle Name" )[1]=>array[0]=>'Test@yahoo.com [1] => name In the array i just need that email Id(Test@yahoo.com) only and assign that into another array.. Pls help me hoow do i do that? Thanks,
If your array is static and the email is always going to be in the same index you can just hard code it in. $array2[0] = $array[1][0];
$array[1][0] would be carrying the email id you want. To make it simple, $emailid = $array[1][0]; Then use $emailid to assign into anotehr array. - ads2help