"Jens Müller" <usenet-11-2007 (AT) tessarakt (DOT) de> escribió en el mensaje
news:663o57F2iirkdU1 (AT) mid (DOT) individual.net...
Quote:
Oracle SQL developer correctly shows the text, but when I access the DB
with a PHP script, "emil-gött-straße" becomes "emil-gott-stra?e". Is there
a possibility to fix this with a function call or similiar in the PHP
script, without changing the webserver or database setup? |
You have two pure PHP options:
1. Convert from DB charset to script charset. Have a look at iconv().
2. Convert to HTML entities. Have a look at htmlentities() with the charset
parameter.