is ther anything to do to make the script support arabic inj html pages like main.html , upload etc
http://www.usharer.com/
XFileSharing Free - arabic Support for the html pages
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Try this: in TCM/Session.pm replace
with
You can use any other charset instead of utf-8.
Now codepage in browser should be selected correctly.
Code: Select all
print header(-cookie=> [@Cookies] ,
-type => 'text/html');
Code: Select all
print header(-cookie=> [@Cookies] ,
-type => 'text/html', -charset => 'utf-8');
Now codepage in browser should be selected correctly.