In this tutorial you will learn about the PHP Require and its application with practical example.
The require() Function
1 2 |
require ("filename.php"); require_once ("filename.php");//File will be included only once |
In this tutorial you will learn about the PHP Require and its application with practical example.
1 2 |
require ("filename.php"); require_once ("filename.php");//File will be included only once |