Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am having an odd problem. This if statement is running as if the condition is being met.. It is not being met. I want the else statement to get executed but it won't. What am I doing wrong?

<?php

$count=2;

if ($count=1)
{
echo "hello";
}
else
{
echo "goodbye";
}

?>
share|improve this question
Do not use notepad. Any modern IDE will put a yellow triangle on line 5. – Francesco Mar 24 '12 at 11:02
1  
You should accept someone's answer if you find that they've answered your question...It will raise your accept rate which is 57% right now. – d-_-b Apr 11 '12 at 5:23
Try if ($count==1) – X.L.Ant Mar 4 at 8:39

closed as too localized by Alexander, nickb, hjpotter92, jadarnel27, X.L.Ant Mar 4 at 8:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

11 Answers

Check that if condition.

if ($count=1)

That's assigning 1 to count, which is always true.

Instead, go

if ($count == 1)

which evaluates the value of $count.

share|improve this answer
1  
Or use strict checks (see my answer for the reason). Otherwise this answer is correct and solves the problem. – Tadeck Mar 18 '12 at 1:00

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).

share|improve this answer
is this the same as in js, == is equal and === is identical ? – Lyuben Todorov Mar 18 '12 at 1:00
@LyubenTodorov: I believe you can say that. === in PHP matches also the types, == does not match types. For details see PHP: Comparison Operators. – Tadeck Mar 18 '12 at 1:04

You need to change

if ($count=1)

to

if ($count==1)

I can't tell you how many times I've made this mistake :)

share|improve this answer
if ($count=1)

Here you are not doing a comparison, you are doing an assignment. This line will alwayas cause $count to be equal to one, no matter what it held before.

Instead, add an extra equal sign to make it a comparison like so:

if ($count==1)
share|improve this answer

You are trying to assign count a value rather than check if it's value is equal to 2.

That is the diffrence between = and ==:

  • = is assign
  • == is compare (boolean compare)

Solution:

<?php
$count=2;

if ($count==1)
{
echo "hello";
}
else
{
echo "goodbye";
}

?>
share|improve this answer
I have changed the formatting of your answer so your point is clearly visible. – Tadeck Mar 18 '12 at 1:10
thanks i realised that i didn't make the highlighting clear, for those reading you can also use === instead of == :) – Lyuben Todorov Mar 18 '12 at 1:15
No problem. Just keep in mind === is not the same as == - the first one is performing strict comparison, thus both are not interchangeable. – Tadeck Mar 18 '12 at 1:18

When you do $count=1 you are assigning the value. Try this:

if ( $count == 1 )

This will do a comparison and evaluate to either TRUE or FALSE. A further comparison can be done using === which will also check that the type (string, integer, boolean, etc) also matches.

share|improve this answer
I believe your and my answers are the only answers mentioning the usage of strict comparison / === ;) +1 for pointing it out, this is the way OP should compare his/her values. – Tadeck Mar 18 '12 at 1:07

if($count == 1)

== compares = is an assignment

share|improve this answer

condition typo, this is correct: if ($count==1)

share|improve this answer

You're expression in the if statement is an assignment instead of a comparison.

Try this instead:

if($count==1)
share|improve this answer

You should try this : if($count==1) .

share|improve this answer

You should better to refer control structure in php

http://www.php.net/manual/en/control-structures.else.php

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.