<?php$p = 20; $q = 20;if ($p = 12) $q--;echo $p;echo $q--;?>
p is set to 20 in the if condition and q is post decremented in the print statement.
Previous Question Next Question
Your comments will be displayed only after manual approval.