When i split a csv file with my php script i can not see the greek language characters! Could you please help me to convert them? data will be saved in the csv.
<?
$path="book.csv";
if (($handle = fopen("$path", "r")) !== FALSE) {
while (($info = fgetcsv($handle, 1000, ",")) !== FALSE) {
print_r($info);
echo "<br>";
}
}
?>
the question mark is actually the greek words. please help me thank you