我有两个php文件,它们有来自网站的产品价格并显示价格很好,但我想将这两个文件包含在一个页面上,它似乎只显示列表中的第一个。我已经单独测试了两者,它们都运行良好。
<?php
include('PricePage1.php');
include('PricePage2.php');
?>
有人可以帮忙吗?我也在每个文件中使用simple_html_dom.php
以下是PricePage1.php中的内容:
<?php
include("simple_html_dom.php");
$html = file_get_html("http://www.argos.co.uk/static/Product/partNumber/4489263.htm");
foreach($html->find('ul.product-price-data li.price') as $element)
echo
<a href='http://www.argos.co.uk/static/Product/partNumber/4489263.htm' target='_blank'><img src='Images/argos.png'> </img>".$element->innertext()."</a></h3><br>" ;
?>
答案 0 :(得分:1)
你的回声以及你的'foreach'的开始和结束花括号都缺少引号。