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 trialDerek Brannock
2,850 PointsCannot get Workspaces to display result
I cannot get Workspaces to to show the preview after I save the file. As soon as I make a change, the browser window displays nothing. I have tried creating multiple files to check this and come up with the same result. Any help is appreciated. Here is my code...
<?php
define("USE_FULL_NAME", TRUE);
define("MAX_BADGES", 150000);
$first_name = "Derek";
$last_name = "B";
$location = "Home";
$role = "Burger Guy";
if (USE_FULL_NAME == TRUE) {
$name = $first_name . ' ' . $last_name
} else {
$name = $first_name;
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title><?php echo $name ?> | Treehouse Profile</title>
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<section class="sidebar text-center">
<div class="avatar">
<img src="img/avatar.png" alt="<?php echo $name ?>">
</div>
<h1><?php echo $name ?></h1>
<p><?php echo $location ?></p>
<hr />
<p>Welcome to PHP Basics!</p>
<hr />
<ul class="social">
<li><a href=""><span class="icon twitter"></span></a></li>
</ul>
<h1>Hello</h1>
</section>
<section class="main">
<pre><?php
?></pre>
</section>
</body>
</html>
1 Answer
Tanner Marshall
13,717 PointsHi Derek!
Not sure if you've fixed this yet, but it looks like you're missing a semicolon on line 11, in the If statement:
$name = $first_name . ' ' . $last_name"
Pop a semicolon in there and it should run just fine! Hope that helps.
Colin Marshall
32,861 PointsColin Marshall
32,861 PointsNOTE: Question updated with proper syntax for embedding code on the forum. Please see the Markdown Cheatsheet for instructions on how to post code to the forum using backticks.