Perhaps you want to give the visitors more than just two options. You might ask if they have a dog, a cat, are looking to adopt, or are just shopping for gifts. You could use a series of if-elseif to direct them to the right place, but you're probably better off using switch. Switch lets you set a corse of action for a number of different possible inputs. Just remember that this too is only thinking in true or false... switch checks each possible case as true or false and then executes based on that decision.

