Hey, i have a small question....
$john = "john";
if ($john == "john")
{
echo "John is John";
}
Nothing wrong with that, but what if I want to do the reversed thing, I just want to see if the variable $john is NOT "john". How would I do that?
Thanks
Niklas