//this is the code that creates the array and the output follows
while ($results_row = mysql_fetch_assoc($results)) {
$returned_results[]= array(
'partName'=>$results_row['partName'],
'description'=>$results_row['description'],
'price'=>$results_row['price']
//what is contained in the array is as follows
Array
(
[partName] => Cooler Master CM Storm Trooper Case
[description] => Armored appearance. Nicely placed handle at the top. At the front; ext
[price] => 36000
)
1
Array
(
[partName] => Cooler Master eXtreme Power Plus 500-Watt
[description] => Power Plus 500-Watt Power Supply,many SATA and peripheral connectors.
[price] => 23000
)
1
Array
(
[partName] => Coolmax M-500B ATX Power Supply
[description] => The Coolmax M-500B ATX Power Supply has 5 SATA and 5 Peripheral, 8 pin
[price] => 20000
)
我需要将数组变量($returned_results[]) 中包含的数据写入 xml 文件。之后,我会将其显示在 xml 表中。但我认为我可以管理后者。你能帮我一个代码示例吗?求求你了,谢谢你!!
xml 文件应包含如下所示的数组数据
<?xml version="1.0" encoding="utf-8"?>
<results>
<partName>Cooler Master CM Storm Trooper Case</partName>
<description>Armored appearance. Nicely placed handle at the top. At the front; ext... </description>
<price>36000</price>
</results>
<results>
<partName>Cooler Master eXtreme Power Plus 500-Watt</partName>
<description>Power Plus 500-Watt Power Supply,many SATA and peripheral connectors. ... </description>
<price>23000</price>
</results
<results>
<partName>Coolmax M-500B ATX Power Supply </partName>
<description>The Coolmax M-500B ATX Power Supply has 5 SATA and 5 Peripheral, 8 pin..</description>
<price>20000</price>
</results>