[ka-Map-users] charset change?
orc
reinhard.ortner at edu.fh-kaernten.ac.at
Tue Oct 2 07:27:35 EDT 2007
FYI: i solved the problem:
for the Query Funktion,
To show these Characters (ä,ö,...), change the map_query_float.php like
that:
---------------------------
Line 417:
foreach ($fields as $key => $value) {
if ($aValues[strtoupper($key)]) {
$val =
$aValues[strtoupper($key)];
$val = iconv("ISO-8859-1",
"UTF-8", $val);
} else
if
($aValues[strtolower($key)]) {
$val =
$aValues[strtolower($key)];
$val =
iconv("ISO-8859-1", "UTF-8", $val);
} else
if ($aValues[$key]) {
$val =
$aValues[$key];
$val =
iconv("ISO-8859-1", "UTF-8", $val);
} else {
$val = " ";
}
echo "<td>$val</td>";
-------------------
the same for the search funktion in the kaSearch.php
--
View this message in context: http://www.nabble.com/charset-change--tf4522234.html#a12996933
Sent from the ka-map-users mailing list archive at Nabble.com.
More information about the ka-Map-users
mailing list