Example:
$this->sql =& new GuestBook_SQL;
What does it do?
It assigns by reference, instead of by value.
This operator is assigning reference. Here's the explenation from PHP manual
And it's old. You don't need that syntax anymore in PHP5. It assigns new objects by reference anyway.