Possible Duplicate:
underlying difference between elseif vs else if
What is the difference between PHP conditions else if
and elseif
...
<?php
....
else if($count == 4) {}
and
elseif($count == 4) {}
Is there any special case to use one or not? Thanks!!