Colleagues.
I have a form that contains an array that is on the cadastro.php page, see:
<input type="text" name="NomeCliente[]">
<input type="text" name="IdadeCliente[]">
<input type="text" name="CPFCliente[]">
And I have the following method inside the file metodos.class.php:
public function cadastrarPaxSingle($nomeCliente,$idadeCliente,$cpfCliente){
// Aqui faço o cadastramento no banco de dados
}
But I'm doing the registration inside the cadastre page itself.php like this:
for($i = 0; $i < count($nomeCliente); $i++){
$cadastrar = mysqli_query($conexao,"INSERT INTO tbcadastro VALUES(null,'".$nomeCliente[$i]."','".$idadeCliente[$i]."','".$cpfCliente[$i]."')");
}
But when I call the method to register within the method:
$métodos->cadastrarPaxSingle($nomeCliente,$idadeCliente,$cpfCliente);
Register a customer and not more. How would I make the code below work?
public function cadastrarPaxSingle($nomeCliente,$idadeCliente,$cpfCliente){
for($i = 0; $i < count($nomeCliente); $i++){
$cadastrar = mysqli_query($conexao,"INSERT INTO tbcadastro VALUES(null,'".$nomeCliente[$i]."','".$idadeCliente[$i]."','".$cpfCliente[$i]."')");
}
}