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

Sajid Latif
seal-mask
.a{fill-rule:evenodd;}techdegree
Sajid Latif
Full Stack JavaScript Techdegree Student 22,368 Points

The 'get' route is not working for me with the SLIMphp

Anyone who can find this problem?

index.php
<?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();

4 Answers

The quiz is not telling you to render index.php. It says to add it to the index.php file. I will figure out the exact code in a little while.

Hi Sajid,

You don't need to render the index.php file you only need to echo 'Hello There' inside the anonymous function.

echo "Hello There";

Also, I don't think you need to have use ($app) in there

Atrian Wagner
Atrian Wagner
24,811 Points

Thank you! That is the correct answer!