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

Sean Flanagan
Sean Flanagan
33,235 Points

Routing in Slim, Task 1

Hi. Is there any reason why this won't pass?

<?php
require 'Slim.php';

$app = new \Slim\Slim();

/*  add your code below this line */
$app->get('/hello', function(), use($app) {
  $app->render('index.php')
});

/* add your code above this line */

$app->run();

Thanks.

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Sean,

There are just a couple things:

First, there is a comma after function() that shouldn't be there.

Second, you added more than what this part of the challenge asked for. If you delete everything in-between the curly braces, then you're good to go.

Below is the corrected code needed for part one.

$app->get('/hello', function() use($app) {
});

Keep Coding! :)

Sean Flanagan
Sean Flanagan
33,235 Points

Hi Jason. I see now where I went overboard. I did as you said and it worked perfectly. I've given your reply an up vote and Best Answer. Thank you. :)