i have a folder in windows with Arabic name (utf8) i'm trying to get this name and display it in a browser using php
$enc = mb_detect_encoding($folder);
$utf8folder = iconv($enc, "UTF-8", $folder);
echo $utf8folder;
or
echo $folder;
getting ����...
help!