<html> <head> <title>Variables are assigned by value</title> </head> <body> <?php $aVariable = 42; $anotherVariable = $aVariable; $aVariable = 325; print $anotherVariable; ?> </body> </html>