Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Difference between include and require Re: Difference between include and require

#89182
noahgelman
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.