I am using the following code on WAMP server Windows 7 to create a folder with Russian name but the actual folder has name like ÐаименованиÑ
<?php
$name="Наименования";
if (!mkdir($name, 0, true))
echo "no";
else
echo "yes";
?>
How can I do that properly? My images in that folder can not be seen by the browser.