<?php
/*$dir = "./";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
    if ($dh = opendir($dir)) {
        while (($file = readdir($dh)) !== false) {
            echo "$file <br>";
        }
        closedir($dh);
    }
}
?>

<?php
/*$dir    = './';
$files1 = scandir($dir);
$files2 = scandir($dir, 1);

print_r($files1);
//print_r($files2);*/

    require("skrypty/Main.php");
    $main=new Main();
?>
