Ciao a tutti.

Ho un file xml fatto così:

codice:
    <row>
      <field name="products_model">M812G</field>
      <field name="products_id">36</field>
      <field name="products_description">MOBILE MEDIO 2 ANTE</field>
      <field name="products_length">134.00</field>
      <field name="products_width">93.40</field>
      <field name="products_depth">48.00</field>
    </row>
Vorrei portarlo in questa forma:

codice:
    <row>
      <products_model>M812G</products_model>
      <products_id>36</products_id>
      <products_description>MOBILE MEDIO 2 ANTE</products_description>
      <products_length>134.00</products_length>
      <products_width>93.40</products_width>
      <products_depth>48.00</products_depth>
    </row>
Come faccio?

Grazie,
Ale