Eclipse在OpenCart代码中显示错误

时间:2014-12-08 13:37:08

标签: eclipse syntax-error opencart

我创建了一个带有打开购物车文件夹的项目来研究它的代码并将其用作开发模块的库。出于某种原因,它在模板文件中显示了多个错误。例如:

<select name="courier_id" id="courier_id" class="openbayData">
     <option></option>
     <?php foreach($couriers as $courier){ ?>
          <option <?php if(!$order_info['courier_other'] && $order_info['courier_id'] == $courier) echo "selected"; ?>><?php echo $courier; ?></option>
                <?php } ?>
</select>

错误是:

Multiple annotations found at this line:
 - Processing instruction not closed 
 - Invalid character used in text string (<?php if(!$order_info['courier_other'] && $order_info['courier_id'] == $courier) echo "selected"; ?>>) 
 - Start tag (<option>) not closed properly, expected '>'

它还显示system / database / mysqli.php文件中的错误

enter image description here

任何想法如何解决这个问题? (我使用的是OpenCart 1.5.6)

0 个答案:

没有答案