
rudie dirkx - 2010-10-29 07:32:54 -
In reply to message 1 from Marek Miglinski
Hi Marek,
as you can see in the result of your print_r, $arrPlayer[0] is an Object, not an Array. To get elements from an object, you use -> instead of [], so you would get the 'short' property like this:
<?php
echo $arrPlayer[0]->short;
?>