Is there a way I can have an or statement within a string?
This is what i have at the moment and it it seems to work OK with one variable within a string.
$result = $list->detailedList($_GET['code'], "T1", 1000, 0, True);
This is what I need to do
$result = $list->detailedList($_GET['code'], "T1" OR "T2", 1000, 0, True);
Thanks for any help in advance.