Hi,
I am fairly new to coding PHP in classes, I have come across some code an old employee has written with the 'and' symbol used throughout the code... could anyone elaborate on the use of this for me?
e.g.
function &generateDays($start_date, &$rs) {
how does this differ from just:
function generateDays($start_date, &$rs) {
??
Thanks