jakebur01 Posted October 13, 2011 Share Posted October 13, 2011 Is this the correct way to use IS NOT in an if statement? if($today<>"$projected") { } Quote Link to comment Share on other sites More sharing options...
Psycho Posted October 13, 2011 Share Posted October 13, 2011 The correct terminology is "not equal to". The correct implementation is if($today!=$projected) { } http://php.net/manual/en/language.operators.comparison.php Quote Link to comment Share on other sites More sharing options...
jakebur01 Posted October 13, 2011 Author Share Posted October 13, 2011 Thanks. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.