Question:Which syntax is correct about TRUE,FALSE and NULL?
A if($active == true)<br />$zero = null;<br />function test($test = false)
B if($active == true) $zero = NULL; function test($test = FALSE)
C if($active == TRUE) $zero = NULL; function test($test = FALSE)
D if($active = TRUE) $zero = NULL; function test($test = FALSE)
+ AnswerC
+ Report