So I have an array
$date1 = "12/31/12";
$date2 = "01/01/13";
$a = array(
'all' => true,
'upcoming'=>true,
'date'=>$date1,
//'date'=>$date2,
'is_nye'=>true,
'where'=>$where,
'status'=>'A'
);
And I want to check if the query has both dates how would I go about that? As I know if I add it in its current state it will display only date2 as it takes place of the original date.
Just name the keys differently: