Hallo,
ist es möglich mit Hilfe der Replace Funktion deutsche Umlaute umzuwandeln ?
http://dev.mysql.com/doc/mysql/en/String_functions.html
So klappt es nicht. Wo liegt der Fehler ?
ist es möglich mit Hilfe der Replace Funktion deutsche Umlaute umzuwandeln ?
http://dev.mysql.com/doc/mysql/en/String_functions.html
PHP-Code:
SELECT id,
REPLACE((CONCAT(c.name_f, ' ', c.name_l) AS name), 'ö' 'oe')
REPLACE((CONCAT(c.name_f, ' ', c.name_l) AS name), 'ü' 'ue')
REPLACE((CONCAT(c.name_f, ' ', c.name_l) AS name), 'ä' 'ae')
REPLACE((CONCAT(c.name_f, ' ', c.name_l) AS name), 'ß' 'ss')
FROM contacts c, lnk_company_contact lcc
WHERE (c.id = lcc.id_contact)
AND (c.public = '".$public."')
AND (lcc.id_company = '".$company_id."')
ORDER BY c.name_f");
Kommentar