<?php $name = 'Ajit'; $temp = &$name; $temp = "My name is $temp. "; echo $temp;echo $name;?>
The $temp = &$name; line will reference $name via $temp.
Previous Question Next Question
Your comments will be displayed only after manual approval.