even after commenting out the echo function its still displaying null on a null value.i jx want ti use it a function not to output.
<?php
if (var_dump($row['display_photo']) === null) {
//echo "null";
}else {
echo "not null";
}
?>