Source Code:
(back to article)
<?php // Declare a variable and initialize it $a = 100; $b = 10; // Check the condition if ($a == 100 && pow($b, 2) == $a) { echo "True"; } else { echo "False"; } //outputs True ?>
Result:
Report an issue