Have now managed to get it to work the way I want.
I'm now able to both collect and display text in one or two different languages that does not normally work with ISO 8859-1 charset.
In my html-pages that I want to be able to get and display UNICODE I insert this in the HEAD section:
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
This works great I can now collect i.e. Russian and Romanian, Or Arabic and English in the same page, and to display one or two languages at a time in another page....
BUT... in the page where I collect the data that is to be stored in the database I use both form-field type of input and form-field type of textarea.
Textarea works and input does not.
Does anyone know how to make input field to work with unicode or have a good workaround. It is not very good to use a textarea to collect a one line string of restricted lengt. (it has to be one line).
Here is the example HTML code on textarea and input field used:
Not working:
<input type="text" name="txtInfTitle" value="<? echo $curInfTitle; ?>" size="50">
Working:
<textarea rows="1" name="txtInfTitle" cols="20" wrap="OFF"><? echo $curInfTitle; ?></textarea>
Hope for a working feedback :-)
Best