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 Build a Basic PHP Website (2018) Enhancing a Form Escaping Output

Filter input and escape output: Are they both required to create a safe web-app?

Hi,

Do I have to use both of these principles to create a safe web page, or using one of them is enough?

Thanks

2 Answers

Codin - Codesmite
Codin - Codesmite
8,600 Points

You should always filter your inputs with PHP and always escape your outputs (escape them when you output them not before).

If you do not filter your inputs you leave your self open to injection attacks and if you do not escape your outputs you leave yourself and other people browsing your website vulnerable to url attacks.

jason chan
jason chan
31,009 Points

or you can just use laravel it built in.