ac
unread,Sep 23, 2008, 5:04:52 PM9/23/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
I have solved the problem, that I can´t add ÄÖÜäöüß and € directly to
text ads with this:
$string = str_replace('Ä', 'Ä', $string);
$string = str_replace('Ö', 'Ö', $string);
$string = str_replace('Ü', 'Ü', $string);
$string = str_replace('ß', 'ß', $string);
$string = str_replace('ä', 'ä', $string);
$string = str_replace('ö', 'ö', $string);
$string = str_replace('ü', 'ü', $string);
$string = str_replace('€', '&#x20AC', $string);
(I have set nusoap to utf-8 encoding).
This works fine, but now i have not 35 characters in description1
because the euro sign alone takes at least 5 characters.
How can I transmit spezial characters without using linespace?