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 trialEllen Sun
1,605 PointsWhat's wrong with my code?
Why isn't it working?
<?php
require 'Slim.php';
$app = new \Slim\Slim( array(
'view' => new \Slim\Views\Twig()
));
/* add your code below this line */
$app->get('/hello', function() use($app) {
$app->render('index.php');
});
/* add your code above this line */
$app->run();
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHi Ellen, your code looks pretty much fine, except you are adding more than what the challenge asked of you. Challenges here on Treehouse are very specific and picky. If you add more than what what asked or delete any of the pre-loaded code, it will not pass you.
This part of the challenge just wants you to add the 'get' route for /hello and nothing more.
So the complete code (including what was pre-loaded) should look like this only:
<?php
require 'Slim.php';
$app = new \Slim\Slim();
/* add your code below this line */
$app->get('/hello', function() use($app) {
});
/* add your code above this line */
$app->run();
Keep Coding! :)
Ellen Sun
1,605 PointsEllen Sun
1,605 PointsHah! Thanks for explaining that. I'll be reading the instructions more carefully in the future :)