20 lines
577 B
PHP
20 lines
577 B
PHP
<?php
|
|
if (session_status() !== PHP_SESSION_ACTIVE){
|
|
session_start();
|
|
}
|
|
$nome=(empty($_POST["nome"])) ? " ": $_POST["nome"];
|
|
include('..\conexao.php');
|
|
|
|
$query= "INSERT INTO categoria (categoria) VALUES ('$nome')";
|
|
$resu= mysqli_query($con,$query);
|
|
if (mysqli_insert_id($con)) {
|
|
$_SESSION['msg']= "<p style='color:blue;'> Categoria cadastrado com sucesso!</p>";
|
|
header('Location: index.php');
|
|
}
|
|
else{
|
|
$_session['msg']= "<p style='color:red;'> Categoria não foi cadastrado!</p>";
|
|
header('Location: index.php');
|
|
}
|
|
|
|
mysqli_close($con);
|
|
?>
|