Yes, Unfortunately I do need to do this with the 3 files...
I think the later solution is the one. I'll have to grab a creation date from each file. Then compare all three and use the newest... I think. Envision some sort of convoluted logic...
if ($t1 > $t2 > t3) {
include_once $file1;
} elseif ($t2 > $t1 > t3) {
include_once $file2;
} else {
include_once $file3;
}
Something like this? Just need to figure out how to get the timestamp in comparable format. 😉