Possible Duplicate:
Reference - What does this symbol mean in PHP?
I've been programming PHP for over 5 years and I've just came across something I have never seen whilst creating a wordpress theme.
$images =& get_children( 'post_type=attachment&post_mime_type=image' );
What does $images =& do? It's the =& I'm concerned about. I have a feeling it's bitwise but I wouldn't understand what it's doing even if it was.
Any help?