Server Side Includes (SSI) are used to create functions, headers, footers, or elements that will be reused on multiple pages.
You can insert the content of a file into a PHP file before the server executes it, with the include or require function.
This can save the developer a lot of time.
The include Function
The include function takes all the text in a specified file and copies it into the file that uses the include function.