所以这是我的代码,但我得到了"解析错误:语法错误,意外'}',期待C:\ xampp \ htdocs \ Mat \ index中的文件结束。第53行"上的php,我不知道为什么有人可以提供帮助呢?
<?php
$connect = mysqli_connect('localhost','root','root123','font');
$query = 'SELECT * FROM pens order by id ASC';
$result = mysqli_query($connect, $query);
if($result):
if(mysqli_num_rows($result)>0):
while($product = mysqli_fetch_assoc($result)):
?>
<div class="col-lg-12">
<div class="row">
<form method="post" action="index.php?action=add&id=<?php echo product['id']; ?>">
<div class="product">
<div class="col-lg-2">
<h4>FONT <?php echo product['id']; ?></h4>
</div>
<div class="col-lg-8 <?php echo strtok(product['name'], " "); ?>">
</div>
<div class="col-lg-2">
</div>
</div>
</form>
</div>
</div>
<?php endwhile; endif; endif; ?>
答案 0 :(得分:0)
你能纠正你的启动php标签吗? <? php
它应该没有空间。
<?php
然后尝试一下。