Quotes help make search much faster. Example: "Practice Makes Perfect"

Sunday, April 21, 2013

Codecademy Sample Solution: Writing Your First 'For' Loop



<html>
  <head>
    <title>Solo For Loop!</title>
  </head>
  <body>
    <p>
      <?php
      // Write your for loop below!
      for( $i = 10; $i < 101; $i = $i + 10){
        echo "<p>$i</p>";
      }
      ?>
    </p>
  </body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts