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 trialSajid Latif
Full Stack JavaScript Techdegree Student 22,368 PointsThe 'get' route is not working for me with the SLIMphp
Anyone who can find this problem?
<?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
Ted Sumner
Courses Plus Student 17,967 PointsThe 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.
Jason Anello
Courses Plus Student 94,610 PointsHi 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
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsThis is what worked for me:
$app->get('/hello', function () {
});
Atrian Wagner
24,811 PointsThank you! That is the correct answer!
Juliette Tworsey
Front End Web Development Techdegree Graduate 32,425 PointsYou're welcome Atrian! I'm sure that I'll be back here more than once for reference myself....until it sticks:-)