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

banner
Close banner
0 points
Submitted by Matt Yaple
about 10 years

Not Working?! It looks like you didn't use echo to output your name.

I can do the Python course no problem. Every time I hit submit it says “It looks like you didn’t use echo to output your name.” I tried on both Chrome and Firefox. Here is my code

 <!DOCTYPE html>
    <html>
        <head>
        </head>
        <body>
            <p>
              <?php
                echo "Matt";
              ?>
            </p>   
        </body>
    </html>

Answer 53192d348c1ccc214f00088d

0 votes
Best answer

Permalink

Needed <?php on line 8 apparently… not the actual echo

points
Submitted by Matt Yaple
about 10 years

Answer 53146ff0548c35c8bb00a240

0 votes

Permalink

which exercise?

points
Submitted by stetim94
about 10 years

1 comments

Matt Yaple about 10 years

3/13 PHP and HTML

Answer 532032359c4e9d677d006ec7

0 votes

Permalink

I have same problem too. Still do not know whats problem

points
Submitted by kerwinluk
about 10 years

Answer 53203456282ae3164600532d

-1 votes

Permalink

<!DOCTYPE html>
<html>
    <head>
    </head>
    <body>
        <p>
          <?php
            echo "Name";
          ?>
        </p>   
    </body>
</html>

my code, works fine

points
Submitted by stetim94
about 10 years