I have a variable of $message that when I echo displays nothing. Unfortunately the following code does not work.
if (!$message) {
echo 'Nothing here!';
}
When I var_dump($message);
I get the following:
string(48) ""
So it looks like somethings in there. Any ides?
Thanks,
John