When I am going to register something in the database of this
PHPcode
<?php
session_start();
include_once("../seguranca.php");
include_once("../conexao.php");
$nome_nivel = $_POST["nome_nivel"];
$query = mysqli_query("INSERT INTO nivel_acessos (nome_nivel, created) VALUES ('$nome_nivel', NOW())");
?>