LPMJ Example 5-17 (Click on the icon to view the source for copy and pasting)
<?php
class User
{
	public $name, $password;

	function get_password()
	{
		return $this->password;
	}
}
?>