Question:What would go in place of ?????? below to make this script execute without a fatal error?<?php $a = 1; $b = 0; ?????? $c = $a / $b; ?>
<?php $a = 1; $b = 0; ?????? $c = $a / $b; ?>
A quit(); B die(); C stop(); D __halt_compiler(); E exit();
+ AnswerB D E
+ Report