Well, an interrupt is exactly that, when an event happens the processor goes off to deal with it and then returns.
LOW to trigger the interrupt whenever the pin is low,
CHANGE to trigger the interrupt whenever the pin changes value
RISING to trigger when the pin goes from low to high,
FALLING for when the pin goes from high to low.
So, is it not easier to simply do something along the lines of..
meaning it will only execute once saving memory an a waste of time interrupt, interrupts are great for checking things externally but if you're only going to need it once, why bother?
}