hi ,
I have a general question which im not sure of.
when i write this code:
<?php
$abc = true;
if ($ver == $var)
{
$abc = false;
}
if (!$abc)
{
echo "something";
}
else
{
echo "nothing";
}
?>
Now , my problem comes to the statement if (!$abc) :
does this ask : if $abc = false or does it check what $abc currently is (false or true) and requires the opposite?
If my question is anyhow unclear tell me and ill rephrase.
thanks ahead guys .