Here is the below Code:
$query = mysql_query(\"SELECT * FROM tablex\"); if ($result = mysql_fetch_array($query)){ if ($result[\'column\'] == NULL) { pr
Use is_null or === operator.
===
is_null($result['column']) $result['column'] === NULL