1
<?php
2
3
include('flow.php');
4
include('mysql.php');
5
foreach(glob('*.php') as $test){
6
7
if ( $test === 'all.php' ) continue;
8
9
include($test);
10
}
11