here are a few different ways:
include('./path/to/file');
/* OR */
require('./path/to/file');
/* OR */
require_once('./path/to/file');
/* OR */
include_once('./path/to/file');
At least those are the methods in PHP itself. You should look through the PHP manual to see which method suits your needs. You can also use Server Side Includes (SSI).