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

Glen Rose
Glen Rose
7,108 Points

Why are we using HttpFoundation package

I am taking the couse "Introduction to User Authentication in PHP" by Alena, and everything works and is fine.

BUT I think the course starts without telling why we are using the HttpFoundation package? Does it make the website safer or?

We are also using the custom function redirect(). why? and is redirect a part of the httpFoundation Package

Thanks ;-)

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

HttpFoundatiion is just a package that takes a bit of the legroom of basic authentication away. It's like using an npm package in JavaScript or a framework for a language.

As I recall redirect() is just a custom function that we can use to call on whenever we need to redirect the user to anywhere specific such as when we're logging in and out of the app.

Glen Rose
Glen Rose
7,108 Points

Thanks Jonathan. Iยดve tried to search youtube for answers, but cant really find anything.

In the course we are suddenly using a $session in some functions. And I wonder where that variable came from... we use it like $session->getFlashBag()->add('error', 'Some error message');

I think I need to read the documentation on the website: https://symfony.com/doc/current/components/http_foundation.html

I just find it funny, that it isnt explained in the course. Treehouse usally is pretty great at this :-)

Thanks for the answer have a great day