1"There is only one difference between include() and include_once().
2If the code from a file has been already included then it will not be included
3again if we use include_once().
4Means include_once() include the file only onceat a time."
5
6include('filename');
7include_once('filename');