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 trialSusan Tarnowski
619 Pointsworkspace console will not echo out results from php hello.php code : <?php echo 'Hello World'; ?>
workspace console will not echo out results from php hello.php code : <?php echo 'Hello World!'; ?>
1 Answer
Alexander Davison
65,469 Pointsecho
ing doesn't output to console. It outputs to the browser window. If you wrote a short HTML program with PHP in it...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Webpage</title>
</head>
<body>
<h1>My Webpage!</h1>
<?php
echo "Hello world!";
?>
</body>
</html>
...and you ran the HTML in a browser, it should say something like "My Webpage!" and then "Hello world!"
Susan Tarnowski
619 PointsSusan Tarnowski
619 PointsThank you! It does work this way, was just wondering why it wasn't working in the workspace Treehouse provides, as I was following along with the video