PHP Variable by Reference

PHP variable assign by Reference
In PHP4 Version you can assign the variable value of the other variable. That means assign the variable by reference. If you declare the two variable you can assign the value to first variable and assign the value to the second variable by the first variable value using the & symbol.

Example
<?php
$myname = "gokul";
$name = &$myname;
Echo $mynam;
Echo $name;
?>
Copyright Labw3