I've an JSON Array in PHP which has two elements. Now I want to get values of each element separately to store in Db. My JSON Array is As follow:
{"NetStock":[{"Phy_Stock1":"4","Sys_Stock1":"5"},{"Phy_Stock2":"3","Sys_Stock2":"4"}]}
Now I want to get values of each Phy_Stock and Sys_Stock separately. Thanks in Advance.