如何让XML打印多个列表?

时间:2013-09-09 21:50:28

标签: php xml

我有一个由AJAX调用的XML文件,它只打印一个密钥列表,而该密钥有多个列表!

这是XML页面的链接 - http://smartliving.comule.com/smartliving.xml

这是PHP代码 -

<?php
$q=$_GET["q"];

$xmlDoc = new DOMDocument();
$xmlDoc->load("smartliving.xml");

$x=$xmlDoc->getElementsByTagName('ORIGIN');

for ($i=0; $i<=$x->length-1; $i++)
{
//Process only element nodes
if ($x->item($i)->nodeType==1)
  {
  if ($x->item($i)->childNodes->item(0)->nodeValue == $q)
    {
    $y=($x->item($i)->parentNode);
    }
  }
}

$cd=($y->childNodes);

for ($i=0;$i<$cd->length;$i++)
{
//Process only element nodes
if ($cd->item($i)->nodeType==1)
  {
  echo("<b>" . $cd->item($i)->nodeName . ":</b> ");
  echo($cd->item($i)->childNodes->item(0)->nodeValue);
  echo("<br>");
  }
}
?> 

以下是该网站的HTML代码 - 网址:http://smartliving.comule.com/example.html

<html>
<head>
<script>
function showCD(str)
{
if (str=="")
  {
  document.getElementById("txtHint").innerHTML="";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","getprod.php?q="+str,true);
xmlhttp.send();
}
</script>
</head>
<body>

<form>
<select name="cds" onchange="showCD(this.value)">
<option value="">Select a CD:</optioSelect a CD:
n>
<option value="Thailand">Thailand</option>
<option value="China">China</option>
<option value="India">India</option>
</select>
</form>
<div id="txtHint"><b>CD info will be listed here...</b></div>

</body>
</html>
<!-- Hosting24 Analytics Code -->
<script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
<!-- End Of Analytics Code -->

如果我做出选择 - 比如说“泰国”,“印度”或“中国”,它只会读取一个产品项目,因为它应该搜索250个产品并打印出那些产品。各国!

说,当我选择“泰国”时 - 它只打印一个产品列表 - 而有许多产品是在泰国制造的!

P-CATEGORY:手柄和旋钮 P-TYPE:Unflash Handle P-SPECS:钢柄 P-NAME:Simon Two Gang P-BRAND:西蒙 起源:泰国 尺寸:44英寸 重量:1公斤 QTY_x002F_PACK:55 MORE_x0020_INFO:afklja fkadfj lkdfjad

你对此有何看法?如何解决这个问题并使其在数据库中打印所有THAI产品?

1 个答案:

答案 0 :(得分:0)

您的搜索循环仅存储 LAST 匹配节点,这意味着所有先前匹配的节点都会被丢弃/忽略。您需要组合循环,以便一旦找到匹配的节点,就开始执行第二个循环,例如:

for ($i=0; $i<=$x->length-1; $i++) {
    //Process only element nodes
    if ($x->item($i)->nodeType==1) {
       if ($x->item($i)->childNodes->item(0)->nodeValue == $q) {
          $y = $x->item($i)->parentNode;
          for ($j = 0; $j < $y->childNodes->length; $j++) {
             //echoes go here
          }
       }
    }
}