3.2.0

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
July 9,
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
July 10,
function put_contents($file,$content) {
$f = fopen($file,"w");
$content = implode("", $content);
fwrite($f,$content);
fclose($f);
}
Steve
July 31,

This topic is archived.

See also:


Back to support forum