Question:You work as a Web Developer for Remote Inc. What will be the output when you try to run the script below?
<?php $b = false; if($b = true) print("true"); else print("false"); ?>
A false
B true
C The script will throw an error message.
D true false
+ AnswerB
+ Report