is the xml file in UTF-8 encoding? If not, try to convert it to UTF-8, check if all non-Ascii characters are correct and try again. For me it worked on a quick test with special characters, the search.xml was in UTF encoding.
an ampersand '&' in an XML file will never work if you do not escape it for XML (i.e. &), you can test it opening the XML file with a browser. In this case you should also get a PHP error since it cannot parse the xml. So if you want to encode in XML for HTML you'd have to write description="Localita&agrave;" armin On Thu, Feb 21, 2008 at 4:25 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi i'm working with pmapper 3.2 beta4, i'm using search.xml > and i noted that if i write a accent word the search doesn't > work, the form desappears from the layout. > Example: > > "<field type="s" name="FRAZIONE" > description="Località" wildcard="2">" > > i used alse the decoding for special characters: > > "<field type="s" name="FRAZIONE" > description="Localitaà" wildcard="2">" > but i didn't have any good result. > > Anybody could help me?? > > thanks all!! > marco zanieri > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > pmapper-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/pmapper-users > ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ pmapper-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/pmapper-users
