Good Afternoon,
I'm almost done, but something is wrong. I have 19k records that I need to sort through in an array, but I can't figure out how to get the in between records.
This works just fine:
$filterData = array(
'product_id' => array('lteq' => 6000)
);
This doesn't:
$filterData = array(
'product_id' => array(6001, 'to'=> 12000)
);
What is an in-between type command for an array? Is their a To: and From?