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

I'm working inside of code igniter and thought this if statement would go through but its giving me a unexpected = error.

if($title !=== FALSE){

} else{

}
share|improve this question

closed as too localized by cryptic ツ, Lusitanian, rdlowrey, Rikesh, tereško Mar 21 at 7:45

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.

3 Answers

up vote 8 down vote accepted

Should be:

if ($title !== FALSE)
share|improve this answer

You have too many equals signs

try:

if($title !== FALSE){
share|improve this answer
1  
+1 because I didn't get the other answer, they looked the same to me before I read yours :D – Esailija Nov 18 '11 at 21:41

What is !===? I guess you should use !== or !=.

share|improve this answer

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