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 For Our Project

Slim Application error

Hello All!

I have followed along with the video and even changed my Slim version to 2.6 but when I launch my preview of index.php I get a slim application error. I have also included a snapshot from my workspace. Any feedback would be appreciated. https://w.trhou.se/1p0zu1h9lj

Thank you,

Jose

1 Answer

V. T van der Vlugt
V. T van der Vlugt
14,883 Points

on line 12 and 14: you need to specify the template partial like

     $app->render('../templates/index.html');
     $app->render('../templates/contact.html');

or else you get an undefined constant error.

Good luck

Thank you V.T that solve my issue.