Properties of objects assigned from PHP can be referenced by specifying the property name after the '->' symbol.
Example 4-4. accessing object properties
name: {$person->name}<br> email: {$person->email}<br> OUTPUT: name: Zaphod Beeblebrox<br> email: [email protected]<br>