I have this array from a mysql interrogation:
 $listings = $wpdb->get_results("
        SELECT id, account_id
     FROM {$wpdb->prefix}ebay_auctions
     WHERE status = 'changed'
     ORDER BY id DESC
     LIMIT {$limit}", ARRAY_A );
But i need only middle value from this array, so value from 11 to 20, how can i mod this mysql query?
