How can I retrive full name and emails in PHP? The format being received is specified as follows:
array(2) { [0]=> array(2) { ["emails"]=> array(2) { [0]=> string(17) "[email protected]" [1]=> string(31) "www.creative-consulting-inc.com" } ["fullname"]=> string(9) "Kate Bell" } [1]=> array(2) { ["emails"]=> array(1) { [0]=> string(17) "[email protected]" } ["fullname"]=> string(14) "Daniel Higgins" } Edit: The Array can be of any length. Its just an example.