Here is the below Code:
$query = mysql_query(\"SELECT * FROM tablex\"); if ($result = mysql_fetch_array($query)){ if ($result[\'column\'] == NULL) { pr
I think you want to use
mysql_fetch_assoc($query)
rather than
mysql_fetch_row($query)
The latter returns an normal array index by integers, whereas the former returns an associative array, index by the field names.