我创建了一个带有打开购物车文件夹的项目来研究它的代码并将其用作开发模块的库。出于某种原因,它在模板文件中显示了多个错误。例如:
<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文件中的错误
任何想法如何解决这个问题? (我使用的是OpenCart 1.5.6)