This is probably basic, but I'm blacking out.
Say I have a string of code:
("SELECT * FROM mytable WHERE Type='Type1' ORDER by $order")
What If I need to get results for more then one Type? Would it be something like this:
("SELECT * FROM mytable WHERE Type='Type1' AND Type='Type2' ORDER by $order")
or
("SELECT * FROM mytable WHERE Type='Type1, Type2' ORDER by $order")