They may well be the same according to the manual but y'never know
Id probably go one stage further..
Code:
if (isset($_SESSION['USERID'])==FALSE AND NOT
($firstthreeip == '192.168.1'
OR $firstthreeip == '128.30.52'))
I did think that the &&
and || operators were explicitly for byte operations
I think you are saying you want to process this block
if the session Id isn't set AND the networkID is neither 192.168.1 OR 128.30.52
I take it you are checking to see what the value of $firstthreeip is what you are expecting and not something like "192.168.1."
personally I don't like seeign operators that are !=. but thats just one of my (many) bugbears