Funcão que altera o produto na tabela
function alteraProduto($conexao,$id,$nome,$preco,$descricao,$categoria_id,$usado){
$query = "update produto set nome = '{$nome}',preco = {$preco}, descricao = '{$descricao}',
categoria_id= {$categoria_id}, usado = {$usado} where id = {$id}";
return mysqli_query($conexao,$query);
}
Erro:
Notice: Undefined index: id in /Applications/XAMPP/xamppfiles/htdocs/PHP_MYSQL/altera-produto.php on line 6
Notice: Undefined index: nome in /Applications/XAMPP/xamppfiles/htdocs/PHP_MYSQL/altera-produto.php on line 7
Notice: Undefined index: preco in /Applications/XAMPP/xamppfiles/htdocs/PHP_MYSQL/altera-produto.php on line 8
Notice: Undefined index: descricao in /Applications/XAMPP/xamppfiles/htdocs/PHP_MYSQL/altera-produto.php on line 9
Notice: Undefined index: categoria_id in /Applications/XAMPP/xamppfiles/htdocs/PHP_MYSQL/altera-produto.php on line 10
Produto nao foi alterado com sucesso: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' descricao = '', categoria_id= , usado = false where id =' at line 1