Is it possible to include multiple files by using 1 line in the php file?
So lets say my main file is main.php
and I want to include ic1.php
, ic2.php
and ic3.php
.
I tried creating a new file include_all.php
, placed a list with all includes in this file and included this file in main.php
. But apparently you cant include included includes.