<?php
$a = "";

if (!empty($a)) {
 echo "not empty";
} else {
 echo "empty";
}

?>
