<html>
<body>
<h1>The xor Operator</h1>
<p>Write a message if one of the conditions are true, bot not if both conditions are true.</p>
$x = 100;
$y = 50;
if ($x == 100 xor $y == 80) {
echo "Hello world!";
}
</body>
</html>
Write a message if one of the conditions are true, bot not if both conditions are true.
Hello world!