dear, can I read arabic data from a .txt file using php?
$myFile = "testFile2.txt";
$fh = fopen($myFile, 'r');
$theData = fread($fh, 4);
fclose($fh);
echo $theData;
using this piece of code it doesn't gives me tha arabic letter?
any suggestions please.....