That looks like PHP. Are you using APIlity?
- Jan
On 23 Sep., 23:04, ac <[EMAIL PROTECTED]> wrote:
> I have solved the problem, that I can´t add ÄÖÜäöüß and € directly to
> text ads with this:
>
> $string = str_replace('Ä', '&#196;', $string);
> $string = str_replace('Ö', '&#214;', $string);
> $string = str_replace('Ü', '&#220;', $string);
> $string = str_replace('ß', '&#223;', $string);
> $string = str_replace('ä', '&#228;', $string);
> $string = str_replace('ö', '&#246;', $string);
> $string = str_replace('ü', '&#252;', $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 [email protected]
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
-~----------~----~----~----~------~----~------~--~---