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 Integrating PHP with Databases Filtering Input for Queries Matching Search Patterns

Importance of Order for if() statements?

I am assuming that the order is important for if(!empty($search) and if(!empty($category))?

Can anyone confirm?

Thanks in advance!

1 Answer

In this particular case it doesn't matter since you're using the logical operator "and". The result of only the first part, !empty($search), will not give us enough info to evaluate the condition as a whole.

Only time it can sorta matter is with an "or". Still, with an "or" the order doesn't make that big a difference

Let me know if this helps here

I don't see any logical operators, "OR" || or "AND" &&. Where are they?

Why I am realizing now in hindsight is that it shouldn't matter since $category can only be set if someone clicks on a link. and $search can only be set if someone hits a form submit button. It's impossible to click a link and form submit button at the same time, so therefore it shouldn't matter.

I'm still a little fuzzy on this. Please let me know if my theory is correct. Thanks!