<?php$p = -2;$q = 2;$r = $p * $q + $r;echo $r;?>
Since the variable r is not defined it returns the error also it takes r as 0 and returns the value -4.
Previous Question Next Question
Your comments will be displayed only after manual approval.