">
<?php$s = "hey";if (strlen($s)) print strlen($s);else print "nice";?>
The function strlen($s) gives the length of the string,5, which is considered true.
Previous Question Next Question
Your comments will be displayed only after manual approval.