After a json_decode this is the var_dump of the assoc array:
array(1) {
[0]=> array(8) {
["Username"]=> string(11) "test"
["FirstName"]=> string(6) "Test1"
["LastName"]=> string(5) "Test2"
["Gender"]=> string(6) "Male"
}
}
if try to echo $array["FirstName"] it doesn't display anything, I've tried everything and nothing works.
$array[0]["FirstName"]