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) Listing and Sorting Inventory Items Displaying Item Details

Do you need to use else if?

Is it OK to just have 3 separate if(){} statements? Or is better practice to use else if(){}?

The reason I ask it works both ways.

Dave StSomeWhere
Dave StSomeWhere
19,870 Points

The answer is really based on the context of the situation. Think about how easy it would be for someone else to jump into that code block and understand what is happening (playing nice with others). Also, if you are part of a team, then what ever coding standards are used by the team would make sense.

Dave varmutant Thanks for the answer! If you can cut n' paste your answer using "Post comment" instead of "Add Comment", I can mark it as Best Answer and we can mark this question as closed. Thanks!

1 Answer

Dave StSomeWhere
Dave StSomeWhere
19,870 Points

Sure thing jaycode - here it is:

The answer is really based on the context of the situation. Think about how easy it would be for someone else to jump into that code block and understand what is happening (playing nice with others). Also, if you are part of a team, then what ever coding standards are used by the team would make sense.