This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by Danny Plass
almost 9 years

step 13 - accepts incorrect answer

My incorrect answer was:

$myName = “Danny”; $myAge = 21; echo “This really should not work”;


– its not printing my name and age, but more importantly: there are no

Answer 5546bb5286f552c62c0005e5

0 votes

Permalink

Your code should look like this::

<html>
  <head>
    <title>Modifying Elements</title>
  </head>
  <body>
    <p>
      <?php
          $myName = "Danny";
          $myAge = 21;
          echo $myName;
          echo $myAge;
      ?>
    </p>
  </body>
</html>