I have a json array (just one row with many attributes) like this :
$row = '[{"ID":"0","Name":"user","Option":"yes"}]';
I can access to every value with :
$row->ID; $row->Name; ...
My question is how can I use a loop to found all attributes and their values without using :
$obj = json_decode($row);