我有兩個php文件,其中包含來自網站的產品價格並顯示價格正常,但我想將這兩個文件包含在一個頁面中,而且它似乎只顯示第一個在列表中。我已經分別進行了測試,它們都正常工作。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>" ;
?>
我們需要查看文件中的內容。 – AbraCadaver
在第一個文件的末尾可能會有一些代碼打破第二個文件的代碼 – RST
我已經添加了該文件,對於它的格式很抱歉,但這是兩個文件的外觀 – Ryan