Variables are assigned by value$aVariable = 42;$anotherVariable = $aVariable;$aVariable = 325;print $anotherVariable;?>