Get your own PHP server Result Size: 625 x 565
x
 
<!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>

The ! Operator

Write a message if the condition is NOT true.

Hello world!