Assigning a Variable by Reference
|
<html> <head> <title>Assigning a variable by reference</title> </head> <body> <?php $aVariable = 42; $anotherVariable = &$aVariable;
$aVariable= 325; print $anotherVariable; ?> </body> </html>
|
|
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
|