<?php$p = 8; $r = 7; $q = 15; $s = $p + $r == $q;print $s;?>
First p and r are added and then tested if s = 15, which is true thus return 1.
Previous Question Next Question
Your comments will be displayed only after manual approval.