PHP operator syntax |
9/2/2008 3:52:00 AM |
PHPRunner Tips and Tricks | |
T
thesofa author
This is a useful page to consult to check to see if you are using the PHP operators correctly, I have been caught out a few times with using == instead of = in an expression. |
|
M
|
michaelmac 10/22/2008 |
Here is a trick I learned when I was programming in C/C++ ... I just reverse order of my compare in an if(). I mean it works in PHP, not in java. |
T
|
thesofa author 10/22/2008 |
nice one, thanks, i shall use that |