0
$connection
registering.php Take it easy there<?php
include 'conexao.php';
$nome = $_POST['nome'];
$email = $_POST['email'];
$sexo = $_POST['sexo'];
$nascimento = $_POST['nascimento'];
$telefone = $_POST['telefone'];
$result_usuario = $conexao->query("INSERT INTO agendass(nome, email, sexo, nascimento, telefone)
VALUES ('$nome', '$email', '$sexo', $nascimento, $telefone)");
$resultado_usuario = mysqli_query($conexao, $result_usuario);
echo ("$resultado_usuario");
?>
</body>
</html>
error in Phpstorm: Unable to resolve table 'agendas' and the same thing but Unable in all tables.
on the page details this error:
`Warning: mysqli_query(): Empty query in C:\xampp\htdocs\ProjetoAgenda\template\cadastrando.php on line 23`