Question:Select the correct output__ <?php $string1 = "10"; $string2 = "15"; $result = strcmp($string1, $string2); if ($result !== 0) { echo "The strings do not match"; } else { echo "The strings match"; } ?>
A The strings do not match
B The strings match
C Both incorrect
D Error
+ AnswerA
+ Report