want to link two objects, so when you update one, you also update the other?

Use =& to assign one object to another by reference:
$adam = new user;
$dave =& $adam;