-
Notifications
You must be signed in to change notification settings - Fork 2
/
inserirProduto.php
26 lines (18 loc) · 978 Bytes
/
inserirProduto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
include 'conexao.php';
$numeroProduto = $_POST ['numeroProduto'];
$nomeProduto = $_POST ['nomeProduto'];
$qtdProduto = $_POST ['qtdProduto'];
$catProduto = $_POST ['catProduto'];
$fornProduto = $_POST ['fornProduto'];
$sql = "INSERT INTO `produtos`(`numeroProduto`, `nomeProduto`, `qtdProduto`, `catProduto`, `fornProduto`)
VALUES ($numeroProduto,'$nomeProduto',$qtdProduto,'$catProduto','$fornProduto')";
$inserir = mysqli_query($conexao,$sql);
?>
<div class="container" style="width:300px; text-align: center; padding-top: 50px;">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<h4>Produto Cadastrado com Sucesso!</h4>
<div>
<a href="index.html" role="button" class="btn btn-sm btn-secondary">Voltar</a>
</div>
</div>