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?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/adwords-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to