<?phpfor($g = 0; $g < 15; $g++) { for($h = $g; $h > $g; $g--) print $g;}?>
The second loop does not execute as the check condition is always false.
Previous Question Next Question
Your comments will be displayed only after manual approval.