Eh?
Are you guys sure?
if ($referer != "http://www.somewhere.com/hello.html" || $referer != "http://www.somewhere.com/hello.html?something=adfa")
If I use the OR ||, doesn't that mean if first condition not met then check second?
If I use AND &&, then doesn't that mean that in order for the logic within that IF{}not to get executed, the user would have to have both URLs in his address bar, which is impossible? Both conditions would have to be met, which isn't possible, no?
Wouldn't I have to use the || OR, if first condition met, ok to this, if first condition not met, but second condition is met, then do this, if both conditions not met, ok go to Else.
Sorry guys, i'm a little confused as to why I would use the && where no one would have both URLs in their address bar.
Thx
MK