You need to change the default charset that PHP uses.
(a) In your php.ini file change this line: default_charset = "UTF-8"
or
(b) In your .htaccess file set this line: php_value default_charset "UTF-8"
You must also ensure that your HTML output is UTF-8, so issue this command
before you output anything:
header('content-type:text/html; charset=UTF-8');
Hope this helps.
--
Tony Marston
http://www.tonymarston.net
"DH" <doug861@comcast.net> wrote in message
news:dI-dnZ9h_soDa5DfRVn-ow@comcast.com...[color=blue]
> Goldfisch1980 wrote:[color=green]
>> Hi!
>>
>> I read an dBase table under Win XP by the common dBase functions of PHP
>> 4.3.5.
>> But all records are displayd with a wrong charset.
>> All umlauts of the databasefile like "öäüéô"... and so on are not
>> displayed or are displayed in a wrong way! :-(
>>
>> How can I set the correct charset for the table, that all umlauts keep
>> save?
>>
>> I thank you so much for your answer,
>> Lars[/color]
>
> You may, or may not, find helpful info here:
>
http://www.dbtools.com.br/EN/article.php?id=00043[/color]