Results 1 to 2 of 2

Thread: Greek characters from database

  1. #1
    Join Date
    Jan 2008
    Location
    GUJ
    Posts
    31

    Greek characters from database

    We are developing an e-commerce web site in Greek langauge. The problem is when we retrieve and display data in Greek language from database it converts the data into another form

    Example:
    Data "Προχωρημένη αναζήτηση" from database is displayed as "?p?p???? ?a?a?t???st???"

    I am using following meta tag in header:
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1253">

    Database is MS Access.

  2. #2
    Join Date
    Jan 2008
    Location
    Germany
    Posts
    551
    Without knowing more about your software, application and the way of implementation, you may first simply try to use utf-8 or utf-16 as charset.

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    or
    <meta http-equiv="Content-Type" content="text/html; charset=utf-16">

    (while the first one should work well).

    Basically you must check the path your data is being transferred from beginning step by step. Possible problems may be that the database stores and/or deliver the data in the wrong charset. If this is the case, you can't do much at the browser's side.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •