Home › Forums › Back End › Difference between include and require › Re: Difference between include and require
October 17, 2011 at 5:41 pm
#89182
Participant
Also, just to add, there is also “include_once”.
If you use “include” you can include a file multiple times on a page. If you use “include_once” then a file can only called once on a page and it will ignore all future calls for that file.