<?php$p = 150;if ($p > 25) printf("Ajit");else if ($p > 35) printf("Ats");else if($p > 45) printf("Aju");?>
In if else if one condition is satisfied then no other condition is checked.
Previous Question Next Question
Your comments will be displayed only after manual approval.