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 trialLaurentiu Borza
1,571 PointsHow to echo Mike's name on the screen other than: <p><?php echo $name ?></p> where $name is set to Mike?
How to echo Mike's name on the screen other than:
<p><?php echo $name ?></p> where $name is set to Mike?
<?php
$name = "Mike";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
</head>
<body>
<p><?php echo $name ?></p>
</body>
</html>
2 Answers
Gareth Borcherds
9,372 PointsI think you overcomplicated it. This works
<?php
$name = "Mike";
echo $name;
?>
Jason Cullins
Courses Plus Student 4,893 Pointsyou could use a print statement.
<p><?php print $name ?></p>