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) Adding a Basic Form Validating Form Data

Casey Cross
Casey Cross
9,289 Points

Video references teacher's notes re: double pipes. Notes missing!

For those, like me, who don't know where the pipe button is on the (Windows) keyboard, it is Shift + Backslash (Shift ).
Does anyone know if there is a benefit or a detriment to using double pipes over "OR"?

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Casey,

Yes, it is the shift - Backslash key.

As for benefits, in PHP which way you do it is really up to you, just be consistent in your use. Personally, I use the double pipes, because in some languages OR is invalid syntax, but the double pipes is pretty much universal. So, it may just be habit on my part from other languages, but I do prefer ||.

Keep Coding! :)