Contact Us || Privacy Policy || About Us |
|
Include and Require Files in PHPPHP allows you to include file so that a page content can be reused many times. There are two ways to include file in PHP.
1) Include File in PHPInclude File is used to include on the basis of given path or source. SyntaxPHP include Examples:menu.html includeexample.php Output ROJGAR BHARAT | JANO_JAGO | eLIBRARY PORTAL | This is include example 2) PHP require FilePHP require is just like include. PHP requir Examples:menu.html requirExample.php Output ROJGAR BHARAT | JANO_JAGO | eLIBRARY PORTAL | This is requir example |