79385843

Date: 2025-01-24 23:07:52
Score: 0.5
Natty:
Report link

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',...);
foreach ($ids_to_exclude as &$id) {
   function_to_call_on_each_id($id);
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Orion447