I try to do this:
if ($var !== ""){ $message = "whatever"; }
But end up having to do this:
if ($var == ""){ //do nothing } else { $message = "whatever"; }
Why does that happen? Shouldn't both of those mean the same thing?
Aucun commentaire:
Enregistrer un commentaire