Hi
this is the child of xml that i want to edit dynamically with php
<items>
<item xVal="SMR012" yVal="3.76" ><![CDATA[<font color = "#000000">Rating: 3.76</font>]]></item>
<item xVal="SMR014" yVal="4.6" ><![CDATA[<font color = "#000000">Rating: 4.6</font>]]></item>
<item xVal="SMR015" yVal="2.56" ><![CDATA[<font color = "#000000">Rating : 2.56</font>]]></item>
</items>
and here is the php code that get data to edit this child
$query = "SELECT * FROM `set`";
$result = MYSQL_QUERY($query);
while ($row = mysql_fetch_array ($result))
{
$query2 = "SELECT * FROM `release` WHERE label_id = '" . $row['ID'] . "'";
$result2 = MYSQL_QUERY($query2);
while ($info = mysql_fetch_array ($result2))
{
//here i got all the data, now i need to edit xml here
}
}
how can i edit this child dynamically? (i also need to edit that XVal and yVal attributes)
thanks.