I am trying to upload folders and filenames on a win2k machine to a MySql database stored on Linux server. The server is running Appache. The proplem lies with the opendir(). It fails. I have read up on the opendir() in the PHP documentation, and it seems that this is supported. Anyone know a place I can look for more documentation, or have a solution?
$path ="\\\win2kMachine\\someSharedFolder\\";
$main_dir =opendir ($path) or die("Error reading ".$path);
$path ="\\\win2kMachine\\someSharedFolder\\";
$main_dir =opendir ($path) or die("Error reading ".$path);