Multiplying a variable without recalling it - PHP -
i feel stupid because cannot find this, , life of me cannot remember how correctly.
$a = $a * .95;
i think i'm trying this:
$a *= .95;
if verify i'm correct, appreciate it.
both valid if don't want "recall" variable, use second one:
$a *= .95;
Comments
Post a Comment