The & symbol means reference... It is derived from C++, where you use things to point to things:
You got a variable named $cat, and $cat = 3. And you can say $bob = $cat, that would define $bob as 3 but it would have to first find out what $cat is. However if you type $bob =& $cat, it is a reference, that $bob is equal to 3.
I don't know how else to describe it, but it basically is important to speed up your applications, so it says "its the same value as $cat" rather than "its the same value as $cat which is 3" so it speeds things up.