Topic: encoded extern.php

Display data in an arbitrary encoding (such as UTF), how?

Re: encoded extern.php

The RSS? The encoding is $lang_common['lang_encoding'], where the language is the language seen by Guests
The HTML's encoding depends on the encoding of the page in which it's placed (and the encoding of the database)

Re: encoded extern.php

I want I can give to all sites rss content in different encoding. For example, both in the win-1251, and utf-8 How does one do that?

Re: encoded extern.php

Alter the coding for extern.php to accept an overriding charset in the URL

Re: encoded extern.php

How? Give option to display the contents extern.php encoded utf-8.

Re: encoded extern.php

Well, basically, something like

$charset = isset($_GET['charset']) ? $_GET['charset'] : $lang_common['lang_encoding'];

Then change the charset used to be $charset

Re: encoded extern.php

Encoding forum win-1251, and encoding site, which i insert code - utf-8.

I think you need to do a complete copy extern.php such extern2.php and add a file conversion Windows> utf.

Give what functions to add and where to write to a file?

Thank you.