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

Sunday, April 21, 2013

Codecademy Sample Solution: Practicing With ForEach



<html>
  <head>
    <title></title>
  </head>
  <body>
    <p>
      <?php
        $sentence = array("I'm ", "learning ", "PHP!");
       
        foreach ($sentence as $word) {
          echo $word;
        }
      ?>
    </p>
  </body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts