Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Basics (Retired) PHP Data & Structure PHP Variables

Create a PHP Code Block with a Variable called "name" inside of that block and set it equal to "Mike".

I WROTE LIKE THIS DID I MADE SOME THING WRONG HELP PLZ!!

<? php $name ="Mike";

?>

<doctype html> <html> <head> <title>Mike</title> </head> <h1> <?php echo $name ?> </h1> <body> </body> </html>

index.php
<? php
  $name ="Mike";

  ?>

<doctype html>
<html>
  <head>
    <title>Mike</title>
  </head>
  <h1> <?php echo $name ?> </h1>
  <body>
  </body>
  </html>

1 Answer

Simon Coates
Simon Coates
28,694 Points

i think you may have messed up your opening PHP tag (the space). But it doesn't require you go to the trouble you have in terms of HTML - it accepts:

<?php

$name = "Mike";
echo $name;

but still there is error any advice plz

Simon Coates
Simon Coates
28,694 Points

it just passed the test with:

<?php
  $name ="Mike";

  ?>
<doctype html>
<html>
  <head>
    <title>Mike</title>
  </head>
  <h1> <?php echo $name ?> </h1>
  <body>
  </body>
  </html>

only real difference is the space in "<? php" being removed.