Hi..
How to count no of files in a network shared folder using PHP?
I used the following code.But wont working.
[COLOR="Red"]<?php
$dir_path ="file://192.168.0.138/img/*.*";
$count = count(glob($dir_path));
$files = glob($dir_path);
?>[/COLOR]
The above code returns the count as 0.