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 trial

PHP Building Websites with PHP Slim Basics & Twig Templates Routing in Slim

Ellen Sun
Ellen Sun
1,605 Points

What's wrong with my code?

Why isn't it working?

index.php
<?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
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi 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
Ellen Sun
1,605 Points

Hah! Thanks for explaining that. I'll be reading the instructions more carefully in the future :)