What is the difference between these two lines of code. I know in the second I added a & but what does that do exactly?
[PHP]foreach ($arr as $value)[/PHP]
[PHP]foreach ($arr as &$value)[/PHP]
Thanks,
Andrew
[PHP]foreach ($arr as $value)[/PHP]
[PHP]foreach ($arr as &$value)[/PHP]
Thanks,
Andrew
Comment