<?php$n1 = 7.5;$n2 = 4;$n3 = 4;echo $n1 / $n2 / $n3;?>
First $n1 / $n2 is evaluated then this is divided by $n3 therefore we get .46875.
Previous Question Next Question
Your comments will be displayed only after manual approval.