外部PHPの読み込み

require()を使用して、外部のPHPを読み込む。
JSPで言うところのincludeと同じ

<?php
    require ('ファイル名');
?>