Ive been putting a website together for a while that got bigger as time went on so I started using includes for the menus etc which helped when I ever needed to change anything (Im very new to web building btw).
I changed all my pages to shtml to be able to do this and it works for all the ANSI pages but not for the unicode pages with Chinese text, it just displays the actual content of the unicode file but without the include file content. This is a problem as most of the text will need translating soon on the other pages as it is a bilingual site and I dont want to have to work without includes as it will be difficult to manage. Im guessing there is a way around this has anyone seen this scenario before?
So how can I either get an ANSI file to take unicode Chinese characters or, get a unicode file to work with includes? So far I've tried shmtl like this;
<!--#include virtual="header.txt"-->
and php like this;
<?php include("header.txt"); ?>
but no joy.
Thanks for any help
I changed all my pages to shtml to be able to do this and it works for all the ANSI pages but not for the unicode pages with Chinese text, it just displays the actual content of the unicode file but without the include file content. This is a problem as most of the text will need translating soon on the other pages as it is a bilingual site and I dont want to have to work without includes as it will be difficult to manage. Im guessing there is a way around this has anyone seen this scenario before?
So how can I either get an ANSI file to take unicode Chinese characters or, get a unicode file to work with includes? So far I've tried shmtl like this;
<!--#include virtual="header.txt"-->
and php like this;
<?php include("header.txt"); ?>
but no joy.
Thanks for any help