my english is not good. sorry.
this is ok:
<?php
$category = "music";
$subcategory = "pop";
echo "<a href=\"localhost/$category/$subcategory\"> Pop Music </a>";
//url output: localhost/music/pop
?>
this is ok:
<?php
$category = "music";
$subcategory = "پاپ";
echo "<a href=\"localhost/$category/$subcategory\"> Pop Music </a>";
//url output: localhost/music/پاپ
?>
my problem:
<?php
$category = "موسیقی";
$subcategory = "پاپ";
echo "<a href=\"localhost/$category/$subcategory\"> Pop Music </a>";
//url output: localhost/موسیقی/پاپ
//It should be like this : localhost/پاپ/موسیقی
?>
It should be like this : localhost/پاپ/موسیقی