I want to upload image that it name in Khmer language.
Ex: សង្គ្រាមថ្មលោហិត.jpg
.
I uploaded this image to my server and stored the image name in the database.
When I try to fetch this image by using php, it shows nothing, even though the file exists.
In PHP
$sql = mysqli_query($con_database, "select * from Table where id='ID_NUM' ");
$rs = mysqli_fetch_array($sql);
$img_name = $rs['Column_Image'];
In HTML
<img src="<?= $img_name; ?>" >