I need to make the DB update the following data from this wireframe via MYSQLi, I would like some tips on how to proceed:
<?php
$marca = trim($_POST["marca"]);
$tipo = trim($_POST["tipo"]);
$quantidade = trim($_POST["quantidade"]);
$atualiza = mysqli_query("UPDATE cigarros SET marca_cigarro = '$marca', tipo_cigarro = '$tipo', quantidade_cigarro = '$quantidade'");
if($atualiza){
echo 'Configurações salvas com sucesso!';
}else{
echo 'Erro ao salvar configurações, tente novamente';
}
?>
Remembering that the columns I used there in query
are for you to have a base. Change them to the actual name of the columns that are in MySQL
.