Relational Operators in action : Relational Operators : Language Basics PHP Source Code


PHP Source Code » Language Basics » Relational Operators »

 

Relational Operators in action



<html>
<head>
   <title>Relational Operators</title>
</head>
<body>
     <?php
        print("(5 < 5) is "  ((5"True" "False""<br />");
        print("(5 <= 5) is "  ((<= 5"True" "False""<br />");
        print("(5 > 5) is "  ((5"True" "False""<br />");
        print("(5 >= 5) is "  ((>= 5"True" "False""<br />");
     ?>
</body>
</html>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Relational Operators