-1
Good personal day I am new in programming I am creating a system of consultation and registration of users, but I am not able to return the items already registered
include_once("ConexaoBigData.php");
$nome = $_POST['Nome'];
$email = $_POST['Email'];
$sql = "insert into Funcionarios (Nome,Email) values ($nome, $email)";
$salvar = mysqli_query($conexao,$sql);
$linha = mysqli_affected_rows($conexao);
mysqli_close($conexao);
I don’t understand, you can’t return, this is just talk to select, and why you put an Insert?
– user60252
I ended up confusing, in this case would be Select * from and the table name Thanks !
– Joao Vitor Rosa
Edit your question by placing the code pertinent to the difficulty
– user60252
Use which version of PHP? It might be interesting to use PDO also https://www.php.net/manual/en/book.pdo.php
– Alisson Hoepers