php mysql interview questions and answers for 5 year experience code example
Example: php interview questions and answers for 2 years experience
$a = '1';
$b = &$a;
$b = "2$b";
echo $a.", ".$b;
$a = '1';
$b = &$a;
$b = "2$b";
echo $a.", ".$b;