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

krishna sapkak
krishna sapkak
1,330 Points

not getting the solution for the error...

plz soleve

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();

1 Answer

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,349 Points

Hi Krishna, I am not sure which step you are stuck on. If the first step, then add a semicolon at the end and delete any code inside the function. The second step is just echoing out the value.

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