Just as a test, make a file: test.php
The results will be: 27 vs 54PHP Code:<?php
$calculation = 27;
$calculation2 = 27;
$calculation == $calculation;
$calculation2 += $calculation2;
echo $calculation . ' vs ' . $calculation2;
?>
There is a difference ...



