<!DOCTYPE html>
<html>
<body>
<h1>The ! Operator</h1>
<p>Write a message if the condition is NOT true.</p>
<?php
$x = 100;
if (!($x == 90)) {
echo "Hello world!";
}
?>
</body>
</html>
Write a message if the condition is NOT true.