Possible Duplicate:
Reference - What does this symbol mean in PHP?
What is the use of the &
keyword in PHP?
Possible Duplicate:
Reference - What does this symbol mean in PHP?
What is the use of the &
keyword in PHP?
Passing by reference.Check this link
http://theserverpages.com/php/manual/en/language.references.pass.php
An ampersand preceding a variable means it is a reference to a variable instead of a copy of a value.