hi all ...
am retriving data from MS Access MDB file ... database ...
the probem is the data stored in arabic language, and when i get the result each arabic word appears like: ???????????????
i changed the page encoding with no good result any help please !!
here is my code:
$conn=odbc_connect('webdata','','');
$sql="SELECT Account_List.Acnt_Code, Account_List.AcntAName, Account_List.AcntEname, Account_List.ATel, Account_List.AFax, Account_List.APoBox, Account_List.AEmail, Account_List.AWeb, Account_List.AArea, Account_List.ACity, Account_List.ACountry, Account_List.SalesMan
FROM Account_List";
$rs=odbc_exec($conn,$sql);
if(!$rs){
echo("error in sql !!");
ecit();
}
while(odbc_fetch_row($rs)){
$acc=odbc_result($rs,"Acnt_Code");
$accname=odbc_result($rs,"AcntAName");
echo $acc." ".$accname."<br>";
}
thank you all ....