difference betwen include and indlude once

Solutions on MaxInterview for difference betwen include and indlude once by the best coders in the world

showing results for - "difference betwen include and indlude once"
Monika
30 Aug 2019
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');