If you're just using include directives, SSI will be faster as it doesn't have the overhead of initialising the PHP interpreter for each request (which won't be all that much noticable until you hit 100's of hits per second). Apart from that, there's not much in it. You would want to use readfile() rather than include(), in PHP, im guessing.