用于导入包含阿拉伯语内容的CSV的PHP脚本

I have to build a script to import a CSV file, (With Arabic content in one coloumn).

I have been searching online and manage to convert my CSV file to UTF8

$filename = $_FILES["csv"]["tmp_name"];

$file = fopen($filename, "r");

$count = 0;
while (($emapData = fgetcsv($file, 10000, ",")) !== FALSE)
{
$count++;
if($count>1){

// tried to convert using below
$string_decoded =  iconv("windows-1256", "utf-8", $emapData[2]);
// convert code above

$sql = "INSERT into `$table` (SurahNo,AyatNo,Ayat) values ('$emapData[0]','$emapData[1]','$string_decoded')";
echo $sql;
mysql_query($sql);  
}
}

I tried to convert using iconv but still getting garbage content imported in mysql.

Imported content look like this ط¨ظگط³ظ’ظ…ظگ ط§ظ„ظ„ظ‘ظ

Can share my CSV file if you wish.

Need help, spend hours searching.