I get one string from a form on the page. This form contains a large number of textfields and pop-ups to set the data in the database. The string will either contain a sentence in Danish, or a combination of characters including numbers etc. Because it is in Danish, the letters Æ,Ø,Å will occasionally be present.
The next string is the corresponding data in the database (FileMaker), which is taken from the query using FX. When I use "print_r" to display the data both strings will look alinke, if there has not been any change, since the data in the form is from that same database.
I make a simple compare "if (varX!==varY)" or "if (strcmp(varX, varY)!=='0')". Both give the result I need as long as the sentence does not contain Æ,Ø or Å. (& and signs like that seem give the same problem).