charset | 2 charset codes in 1 page

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
pedroz
Forum Commoner
Posts: 99
Joined: Thu Nov 03, 2005 6:21 am

charset | 2 charset codes in 1 page

Post by pedroz »

Hi guys!

I don't know if it is possible without for example iframe but I would like to avoid iframe command :

_ I want to output a page divided in two parts

<table style="width: 100%">
<tr>
<td> ... TEXT in UTF-8 charset... </td>
<td> ... TEXT in windows-1251 charset... </td>
</tr>
</table>

Sharing two charset codes in the same page. Any idea how can I do it?

Thanks
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

I'm pretty sure that's not possible without (i)frames.
User avatar
Ambush Commander
DevNet Master
Posts: 3698
Joined: Mon Oct 25, 2004 9:29 pm
Location: New Jersey, US

Post by Ambush Commander »

Not directly. You can always, however, convert to a common charset (i.e. UTF-8) using iconv()
Post Reply