Google News
logo
PHP - Interview Questions
How to include a file to a php page ?
We can include a file using "include() " or "require()" function with file path as its parameter.

Syntax : <?php include('css-files.php'); ?>
Advertisement