Okay tried to do something using func_get_args():
function include_files()
{
$args = func_num_args();
//Begin loop to include files
for ($i = 0; $i < $args; $i++)
{
include($i);
}
}
PHP delivered via UPS these errros:
Warning: include_files(0): failed to open stream: No such file or directory in /home/oox/public_html/beta/sources/functions.php on line 26
Warning: include_files(): Failed opening '0' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/oox/public_html/beta/sources/functions.php on line 26
Warning: include_files(1): failed to open stream: No such file or directory in /home/oox/public_html/beta/sources/functions.php on line 26
Warning: include_files(): Failed opening '1' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/oox/public_html/beta/sources/functions.php on line 26