我想填充從XML文件中的數據表的HTML表格和線沿線的在想:填充處理XML數據
1)創建XML數據:
<menu>
<pizza>
<regular>
<item name="Tomato Cheese">Tomato Cheese
<price size="small">1</price>
<price size="large">2</price>
<description>A</description>
</item>
<item name="Onion">Onion
<price size="small">3</price>
<price size="large">4</price>
<description>B</description>
</item>
</regular>
</pizza>
</menu>
2)在HTML中創建表:
foreach ($xml->xpath('/menu/pizza/descendant::item') as $item)
{
print "<tr><td>".$item."</td>" ;
}
:
<table border="1">
<thead>
<tr>
<th rowspan="2">Item </th>
<th rowspan="2">Description</th>
<th colspan="2">Price</th>
</tr>
<tr>
<th>Small</th>
<th>Large</th>
</tr>
</thead>
<tbody>
...
3)在XPath查詢使用foreach語句
這對第一行非常有用,但我無法弄清楚如何填充其餘列。
我已經採取了編輯對這個問題的標籤更何況我覺得你實際使用這裏的技術的自由。請儘量在將來包含這些內容,以便正確的人員找到您的問題。 – IMSoP
你已經很好地描述了你迄今爲止所做的以及你的總體目標是什麼。如果你想添加具體的問題,你可以把它變成一個很好的編程問題。請參閱幫助中心的[我如何提出一個好問題?](http://stackoverflow.com/help/how-to-ask)。 – hakre