Variables Are Assigned by Value
|
<html> <head> <title>Variables are assigned by value</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 :
-
|