I'm having trouble making an array foreach, it's displaying an error, follow the code below:
<table style="width: 100%;">
<thead>
<tr>
<th>Item</th>
<th>Código</th>
<th>Produto</th>
<th>Valor</th>
</tr>
</thead>
<tbody>
<?php while($dado_produto = $result_produtos->fetch_array()){ ?>
<tr>
<td>1</td>
<td><?php echo $dado_produto['cod']; ?></td>
<td><?php echo $dado_produto['descricao']; ?></td>
<td><input type = "text" name="valor[<?php echo $dado_produto['cod']; ?>]"/>
<input type = "hidden" name="linha[<?php echo $dado_produto['linha']; ?>]"/>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<input type="submit"/>
</form>
value.php receives the values by the POST method
<?php
header('Content-Type: text/html; charset=utf-8');
include_once("../../controle/conexao.php");
// Início da consulta
$sql = "INSERT INTO 'produtos' ('cod', 'valor', 'linha') VALUES";
// Para cada elemento produto:
foreach($_POST['valor'] as $cod=>$val; $_POST['linha'] as $linha){
// Monta a parte consulta de cada produto
$sql .= " ('{$produto}', '{$valor}', '{$linha}'),";}
// Tira o último caractere (vírgula extra)
$sql = substr($sql, 0, -1);
// Executa a consulta
mysqli_query($sql);
$cadastrados = mysqli_affected_rows();
?>
But the error is returning to me
PHP Parse error: syntax error, unexpected ';', expecting ')'
The line that the error occurs is:
($ _ POST ['value'] as $ code => $ val; $ _POST ['line'] as $ line) {
I have already changed by comma but it still gives error, this code I got from a web site as a reference, but apparently it is incorrect. What would be the correct method?