">
<?php$p = 25;$q = 50;$r = 15;if ($p / $q / $r) print "Interview";else print "Mania";?>
In php division returns a float that is a non zero value thus evaluates to true.
Previous Question Next Question
Your comments will be displayed only after manual approval.