Well, if you mean to check if it is empty or null or blank? Lots of ways to check that.
Normally if you enter it into a database, you can check if it exists or is empty. Something like this would work for you;
if (isset($row["ADDRESS"]) AND trim($row["ADDRESS"])!="") {
// There is something in the address field
echo $row["ADDRESS"];
} else {
// Nothing there...
echo "You need to complete the address field!";
}
You can also use === to handle this in an IF clause, but, this way seems to work good enough.
But, it would be much better to make sure the field is not empty before you save it to the database.
Normally, when you enter data, you need to validate all the inputs to make sure they are correct.
THEN, save them to the database. In this way, you would never need to check things when displaying them. Make sense?