How to include external file in php page

How many methods is used to include external file in PHP Lanaguage?
1 answers
Neeraj
<p>There are Two Methods in PHP to include external Files</p> <pre><code> 1-> require_once "filename.php" 2-> include_once "filename.php"; </code></pre>