[Solved] how to display the contents of an object array


Try explode. It will produce an array then you can list them using foreach.

for instance:

$input = "hello,there";
foreach($input as $index=>$key)
{
  echo $key;
}

output:

hello
there

solved how to display the contents of an object array