Tuesday 14 August 2018

How to read Greek characters .mdb file using PHP (PHP & ODBC & UTF8 – Char)

If you can not able to display Greek/ german characters .mdb file OR UTF – 8 character problem then below code will help you.
iconv('Windows-1253','UTF-8','YOUR CONTENT');


$sql = "SELECT * FROM tableName";
$result = '';
$r =  @odbc_exec($db_connection,$sql);
while($object =  @odbc_fetch_object($r))
{
 $result .= iconv('Windows-1253','UTF-8',$object['name']);
}

0 comments:

Post a Comment