I am still new to PHP so please bear with me.
So I am getting this error: Notice: Trying to get property of non-object on this line:
echo (
\
As you are working with an array, you should use []
to access the array's items :
echo $row['last_name'];
Use the right syntax, and the error will go away ;-)
Still, if you really want to convert an array to an object (not really sure why you'd do that, though, in this specific case), you can use this :
$row = (object)$row;
echo $row->last_name;
Here's the relevant section of the manual : Type Casting