Forum Moderators: coopster
It really depends upon what you're trying to accomplish and what you want to accomplish in the future. If all you're trying to do is streamline your site maintenance by reusing common code (i.e. a single file for common navigation or header, etc.) then I'd suggest you use SSI.
I tend to use PHP includes only if:
A. my files are already in PHP
B. I need to preprocess something and use the result
C. I want to be sure the include file is included (require) or else stop where you are
HTH