I'm using php v4.2.4
The php manual says any version >= 4.0.4 should support the function is_null, but my version is not recognizing it. Is there something I have to do to get this function operational?
Thanks,
Jake
Moderators: macek, egami, gesf


if (is_null($row_listContract['address_line_1'])) {
echo "It is null.";
} else {
echo "It is not null."
}
if ($row_listContract['address_line_1'] = "") {
echo "It is null.";
} else {
echo "It is not null."
}

Users browsing this forum: No registered users and 2 guests