I've had my developer write an ajax script for use on someone else's blog. In the php script he's used an include statement for a couple of calculator type functions.
include "calculator.php";
let's say we drop that script into their /blog directory. Someone visits the post, the script works fine, it can find calculator.php.
But what happens once that page gets archived? Now it's going to be accessed like /blog/archives/2010/blogpost. Will the include statement still work? I'm thinking not.