我正在尝试在按钮单击时生成XML文件,该文件从mysql数据库中获取值并将其分配给XML行属性。基本上生成一个XML文件,该文件将导入MSSQL Server DB。
无法在foreach
PHP循环中添加子元素。代码如下
$querytwo = $this->db->query("Select * from ProjectActivtyperDay where idEmployeeWeeklyTimesheetDetails=".$IdEmpTsDetails);
foreach ($querytwo->result() as $rowtwo)
{
$line = xml_add_child($prtransaction,'taPATimeSheetLineInsert','');}
但是,当我在Internet Explorer上运行代码时,我可以看到当我使用xml_print
(我已经定义了这个函数)时添加了line元素,但它在google chrome上不起作用。
答案 0 :(得分:0)
<强>尝试:强>
foreach ($query as $parent => $child) {
echo $child;
foreach ($child as $parent2 => $child2){
echo $child2;
foreach ($child2 as $parent3 => $child3){
echo $child3;
}
}
}