<?php $data = [ [ 'email' => 'a@bc.com', 'firstname' => 'peter', 'last_name' => 'griffin', 'company' => 'Nantuket Brewing', 'Addresses' => [ [ 'addr1' => '31 Spooner Ln', 'city' => 'Quahog', 'state' => 'RI' ], // possible more addresses here ], ], // possible more items here // [ // 'email' => 'x@y.z', // ... // ] ]; $asString = json_encode($data); echo($asString); //
You have javascript disabled. You will not be able to edit any code.