With the select_query() SQL helper, is the where array an AND or an OR?
Is this saying:
OR
PHP Code:
select_query("table", "id, user", array("field1" => "variable1", "field2" => "variable2"));
PHP Code:
select `id`, `user` from `table` where `field1`="variable1" AND `field2`="variable2";
PHP Code:
select `id`, `user` from `table` where `field1`="variable1" OR `field2`="variable2";