<?php
	/*dir_all ("C:/",0);
	function dir_all ($path,$level) {
	if(is_dir($path)) {
	if($dh = opendir($path)) {
	while (($file=readdir($dh)) !== false) {
	if($file!="." && $file!=".." && $level<=1) { // если $level<=2 и выше, выводит все древо.
	if(is_dir($path."/".$file)) {echo "<br>";} //else {}
	echo "<a href=\"$path/$file\">$file</a>\n";
	}
	dir_all ("$path/$file",$level+1);
	   }
	}
	closedir($dh);
	}
	}*/
	if($dh = opendir('\\\\172.17.11.2\\base')){
		echo "!!!!!";
	}
	/*while (($file=readdir($dh)) !== false){
		echo $file."<br>";
	}*/
?>