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 trialMustafa Dilaver
12,671 PointsFilter 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
8,600 PointsYou 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
31,009 Pointsor you can just use laravel it built in.