Here is a function that is used to store the special characters:
function changeCharSweToDb($string){
$string = ereg_replace ("å", "�", $string);
$string = ereg_replace ('ä', '�', $string);
$string = ereg_replace ('ö', '�', $string);
$string = ereg_replace ("Å", "�", $string);
$string = ereg_replace ("Ä", "�", $string);
$string = ereg_replace ("Ö", "�", $string);
$string = str_replace ('"', '"', $string); return $string;
}
Any ideas?/orjan
_________________________________________________________________ L�ttare att hitta dr�mresan med MSN Resor http://www.msn.se/resor/
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
