Oi, gente! Está aparecendo este erro na lista de produtos: "Parse error: syntax error, unexpected 'produtos' (T_STRING), expecting ',' or ')' in C:\xampp\htdocs\lojas\produto_lista.php on line 3"
Não estou sabendo identificar, pode ajudar?
<?php include('cabecalho.php');
include('conecta.php');
include('banco_produto.php');
<table class=' table table-striped'>
<?php
$produtos = listaProdutos($conexao);
foreach($produtos as $produto):
?>
<tr>
</td>$produto ['nome'] </td>
</td>$produto ['preco'] </td>
</tr>
<?php
endforeach
?>
</table>
<?php include("rodape.php");?>