Friday, April 25, 2014

Conditionals and Control Flow - 1/4 - codeacademy.com

Instructions: On line 8, use a comparison operator to compare two numbers. Make sure to end your line of code with a semicolon.



<html>
  <head>
    <title>Comparing Numbers</title>
  </head>
  <body>
    <p>
      <?php
        5<10;
      ?>
    </p>
  </body>
</html>
Comparing Numbers

No comments:

Post a Comment