본문 바로가기
MySql

MySQL NULL에 대한 PHP 검사

by 베이스 공부 2021. 1. 7.
반응형

다음은 코드입니다.

$query = mysql_query("SELECT * FROM tablex");

if ($result = mysql_fetch_array($query)){

    if ($result['column'] == NULL) { print "<input type='checkbox' />"; }
    else { print "<input type='checkbox' checked />"; }
}

값이 NOT NULL 이면 여전히 선택되지 않은 상자가 나타납니다. 위에서 뭔가 잘못하고 있는데 $ result [ 'column'] == NULL 이 작동하지 않아야합니까?

어떤 아이디어?

 

해결 방법

 


is_null($result['column'])

$result['column'] === NULL

 

참조 페이지 https://stackoverflow.com/questions/1576243

 

 

반응형

댓글