1
I have a form with action for this script and POST method, and some values need to be inserted in different tables of the database, but either just insert in a table, or do not insert in any.
<?php
if($_POST["acao"] == "inserir"){
inserirCliente();
}
function inserirCliente(){
$bd = new mysqli("localhost", "root", "", "projeto_ap2" );
$sql = "INSERT INTO cliente(cpf, nome, dt_nasc) "
. "VALUES ('{$_POST["cpfCliente"]}','{$_POST["nomeCliente"]}','{$_POST["dataNascimentoCliente"]}')";
"INSERT INTO cliente_endereco(cpf_cliente, cep, cidade, estado, bairro, logradouro, numero)"
. "VALUES ('{$_POST["cpfCliente"]}','{$_POST["cepCliente"]}','{$_POST["cidadeCliente"]}','{$_POST["estadoCliente"]}','{$_POST["bairroCliente"]}','{$_POST["logradouroCliente"]}','{$_POST["numeroCasaCliente"]}')";
"INSERT INTO cliente_telefone(cpf_cliente, telefone_cliente)"
. "VALUES ('{$_POST["cpfCliente"]}','{$_POST["telefoneCliente"]}')";
$bd->query($sql);
$bd->close();
}
header("Location: index.php");
already tried to separate the three queries into three variables and then execute them?
– William