how can I loop through this JSOn object and get the data in an unordered list like
.fnem anam 1
.ynem snam 2
.onem dnam 3
{"uname":["fnem,ynem,onem"],"Oname":["anam,snam,dnam"],"osize":["1,2,3"]}
for more clarity,this is the source of that result:
echo json_encode(array('uname'=>$_POST['Oname'],'Oname'=>$_POST['uname'],'osize'=>$_POST['size']));