I have a problem that I'm using move_uploaded_file() function to upload files and some of the files named in Arabic so I googled the problem but still no answer I used meta tag and I used Base64 encode and everything but still doesn't work.
What is the solution ?
<?php
    $data_name=$_POST['name'];
    $name=base64_encode($_FILES['file']['name']);
    $location="../Files/".$course_name."/";
    $tmp_name=$_FILES['file']['tmp_name'];
    if(move_uploaded_file($tmp_name, $location.$name))
        echo"OK";
?>
 
     
     
    