I created a php function to fetch records from a sql table subscriptions, and I want to add a condition to mysql_query to ignore the records in table subscriptions that exists in table removed_items, here is my code;
function subscriptions_func($user_id, $limit){
    $subs = array();
    $sub_query = mysql_query("
        SELECT `subscriptions`.`fo_id`, `subscriptions`.`for_id`, `picture`.`since`, `picture`.`user_id`, `picture`.`pic_id`
        FROM `subscriptions`
        LEFT JOIN `picture`
        ON `subscriptions`.`fo_id` = `picture`.`user_id`
        WHERE `subscriptions`.`for_id` = $user_id
        AND `picture`.`since` > `subscriptions`.`timmp`
        GROUP BY `subscriptions`.`fo_id`
        ORDER BY MAX(`picture`.`since_id`) DESC
        $limit
        ");
    while ($sub_row = mysql_fetch_assoc($sub_query)) {
        $subs [] = array(
            'fo_id'             => $sub_row['fo_id'],
            'for_id'            => $sub_row['for_id'],
            'user_id'           => $sub_row['user_id'],
            'pic_id'            => $sub_row['pic_id'],
            'since'             => $sub_row['since']
        );
    }
    return $subs ;
}
My solution is to create another function to fetch the records from table removed_items and set a php condition where I call subscriptions_func() to skip/unset the records that resemble the records in subscriptions_func(), as the following
$sub = subscriptions_func($user_id);
foreach($sub as $sub){
    $rmv_sub = rmv_items_func($sub[‘pic_id’]);
    If($rmv_sub[‘pic_id’] != $sub[‘pic_id’]){
        echo $sub[‘pic_id’];
    }
}
This solution succeeded to skip the items in the table removed_items however this solution makes gaps in the array stored in the variable $sub which makes plank spots in the echoed items.
Is there a condition I can add to the function subscriptions_func() to cut all the additional conditions and checks?
 
     
    