Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

zaky qaalib
Courses Plus Student 203 PointsCreate 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>
<? php
$name ="Mike";
?>
<doctype html>
<html>
<head>
<title>Mike</title>
</head>
<h1> <?php echo $name ?> </h1>
<body>
</body>
</html>
1 Answer

Simon Coates
28,693 Pointsi 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;
zaky qaalib
Courses Plus Student 203 Pointszaky qaalib
Courses Plus Student 203 Pointsbut still there is error any advice plz
Simon Coates
28,693 PointsSimon Coates
28,693 Pointsit just passed the test with:
only real difference is the space in "<? php" being removed.