If you have this
for($i = 0; $i < 10; $i++) include(\'whatever.php\');
Will it pull the file ten actual times, or will it only access th
It will include the file ten times.
If that's a problem, you could use include_once
include_once