In your code you are using assignement, so this is matched all the time.
Good IDEs would point it out to you that there is possible accidental assignement. To solve this, it would be better to avoid assignements within conditions:
<?php
$count=2;
if ($count===1)
{
echo "hello";
}
else
{
echo "goodbye";
}
Ps. I also used strict comparison - it is good when you know you have integer and you want to compare it to integer. This is good practice, because it avoids confusion over what you wanted to achieve (eg. if '1' should be matched also, or only 1 integer).
if ($count==1)– X.L.Ant Mar 4 at 8:39