Am working on some PHP inputs which I store in an array, then I post to an API requiring an array of JSON objects. I keep getting errors when posting the data below..
Please assist?
Array am trying to post
$children = ["child_name" => $cName , "child_dob" => $cDob];
dd($children);
Output in browser after die dump
array:2 [
"child_name" => array:5 [
0 => "Child 1"
1 => "mnmnmn"
2 => "mnmnmnm"
3 => "nbnbnb"
4 => "nbjhjgkgjhkg"
]
"child_dob" => array:5 [
0 => "2018-11-01"
1 => "2018-11-02"
2 => "2018-11-09"
3 => "2018-11-14"
4 => "2018-11-08"
]
]
Sample data from API I need to POST to
{
"children":[
{"child_name":"abc","child_dob":"23-05-2015"}
]
}