You could make an array of ids like $ids_to_exclude = array('93',...) then loop through it using a forloop or while loop
$ids_to_exclude = array('93',...)
forloop
while
$ids_to_exclude = array('93',...); foreach ($ids_to_exclude as &$id) { function_to_call_on_each_id($id); }