Ok, So I have 3 arrays.
$lastname = array ('simpsons' , 'jetsons', 'griffin');
$replacestring = array ('<<First Name>>', '<<First Name>>', '<<First Name>>');
$email_address = array ('homer@gmail.com', 'judy@gmail.com', 'peter@gmail.com');
All the arrays have the exact same number of elements. What I need to do is have one 3d array so it looks something like
Simpson, <<First Name>> , Homer@gmail.com
Anyone know how to do this?