if(!$sqlStr==$sqlStr1){
echo $sqlStr;
}else{
echo $sqlStr;
echo "<br>";
echo $sqlStr1;
echo "<br>";
echo "No changes were made!<br>";
}
This statement produces the same results whether or not the "!" statement is included.
e.g. if(!$sqlStr==$sqlStr1)
produces the same results as if($sqlStr==$sqlStr1)
Why?