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 trialzaky 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,694 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,694 PointsSimon Coates
28,694 Pointsit just passed the test with:
only real difference is the space in "<? php" being removed.