Hi Experts,
I know that it is possible to generate XML using VBA in Excel. What I am trying to do, however, is to generate the following XML structure in an interval format. Every 5 seconds, I need to generate (update) the XML that is created, by adding a new <DAY> node, and all children.
Is this possible?
Thanks,
DaVuLF
I know that it is possible to generate XML using VBA in Excel. What I am trying to do, however, is to generate the following XML structure in an interval format. Every 5 seconds, I need to generate (update) the XML that is created, by adding a new <DAY> node, and all children.
PHP:
<VEHICLE1>
<DAY1>
<x>95</x>
<y>95</y>
<speed>5</speed>
<status>"On Time"</status>
</DAY1>
<DAY2>
<x>91</x>
<y>91</y>
<speed>4</speed>
<status>"On Time"</status>
</DAY2>
</VEHICLE1>
<VEHICLE2>
<DAY1>
<x>3</x>
<y>3</y>
<speed>3</speed>
<status>"Slight Delay"</status>
</DAY1>
<DAY2>
<x>8</x>
<y>8</y>
<speed>5</speed>
<status>"On Time"</status>
</DAY2>
</VEHICLE2>
Is this possible?
Thanks,
DaVuLF
Last edited: