Loop between a date of every month,

void loop()
{
  while (day != 4)
  {
     // do stuff
  }
  // reset loop
  while (day == 4);
}
1 Like