Problem generating XML with Grid Connector - fine in Firefox

Hi, I’m using GridConnector to generate the XML for a grid. The XML displays fine in Firefox, but throws up an error in Internet Explorer.



The connector file which throws up the error is at v2.conquermaths.com/members/stud … mem_id=123



I would appreciate it if someone could point me in the right direction to fix this!



Many thanks

Richard

You are using non-utf data, for row@id = 18190 you have the “�” character is not utf one ( maybe some later data has the similar problems )
Problem can be resolved by adding the next line to connectors code

$grid->set_encoding(“iso-8859-1”);

Many thanks. That solved the problem.