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 (
\
I was thinking - how would I convert an array into an object? Maybe that would be my solution.
That indeed would be one solution.
$row = (object) $row;
Another would be to use the right syntax for the data-type in question, in this case an array.
Instead of
$row->last_name
You should use
$row['last_name']