Code: Select all
<?php
$a="php";
$php="PHP Programming is cool...<br />";
echo $$a;
function &increment($i){
$i++;
return $i;
}
$value=&increment(55);
increment(100);
echo "$value<br />";
increment(1000);
echo "$value<br />";
?>