I have small script that is making select to MS Asscess db, query looks like this
$sql = "SELECT * FROM Employee WHERE EmployeeName LIKE %$user_full_name%";
where $user_full_name
have special characters like óńćżźśąę, if those chars are replaced by _
query will have result but they are not 100% accurate, so i wanted to use mb_convert_encoding
to encode my select query
to that of ms access but all known encodings don't work, is there a way to make ms access understand it, or where i can get info in what encoding is my ms Access?