my question is, is it possible to iterate over includes like in the below example
Code: Select all
for ($a = 0; $a < 10; $a++){
include_once("file$a.php");
}thanks in advance for help/advice
Moderator: General Moderators
Code: Select all
for ($a = 0; $a < 10; $a++){
include_once("file$a.php");
}