I am using the Export Recordset as XML from the developer toolbox. I have it working great but I need to be able to add attributes to the RowNode during the export that includes a column from the XML Export. Currently it looks like this:
$xmlExportObj->addColumn("address", "address");
$xmlExportObj->setRowNode("location");
which produces this:
<location>
<address>8086 Queen Palm Ln #315 Radford, VA 22186-6443</address>
I need the xml to look like this:
<location address="701 first street, Sunnyvale, CA">
How do I do this?
$xmlExportObj->addColumn("address", "address");
$xmlExportObj->setRowNode("location");
which produces this:
<location>
<address>8086 Queen Palm Ln #315 Radford, VA 22186-6443</address>
I need the xml to look like this:
<location address="701 first street, Sunnyvale, CA">
How do I do this?