:: Forum >>

Help! Saving a copy of the grid to an XML file

Hello,

I'm currently creating a grid from a .CSV file. Is there any code - at any point (even before users edit the grid) - to create an .XML file of what is in the grid? I'm using HTML but also have access to ASP and PHP servers if needed. I am a new user just learning using the grid. Any help would be much appreciated!
Lori
Wednesday, July 9, 2008
Lori;

You should use perl, php or asp to make the XML file first, then load it into the grid. However if you don't need the XML, the csv file will be smaller in size to process.
Richard Noble
Thursday, July 10, 2008
function put_contents($file,$content) {
$f = fopen($file,"w");
$content = implode("", $content);
fwrite($f,$content);
fclose($f);
}
Steve
Thursday, July 31, 2008

This topic is archived.


Back to support forum

Forum search