public function executar($sql){
$con = new conexao();
$con->abrir();
$re = $con->mysqli->query($sql);
// Preciso retornar esta informação tambem:
$last_id = $con->mysqli->insert_id;
$con->fechar();
return $re;
}
function inserir($tabela,$dados){
$arrCampo = array_keys($dados);
$arrValores = array_values($dados);
$numCampos = count($arrCampo);
$numValores = count($arrValores);
if($numCampos == $numValores){
$SQL = "INSERT INTO " .$tabela." (";
foreach($arrCampo as $campo){
$SQL .= "$campo, ";
}
$SQL = substr_replace($SQL, ")", -2, 1);
$SQL .= "VALUES (";
foreach($arrValores as $valores){
$SQL .= "'".$valores."', ";
}
$SQL = substr_replace($SQL, ")", -2, 1);
}else{
echo "Erro ao verificar campos";
}
$this->executar($SQL);
}
I'm using the following codes, and I need to return the ID of the last entry in the database.
$dados_cliente = array(
'cliente_nome'=>$cliente_nome,
'cliente_email'=>$cliente_email,
'cliente_celular'=>$cliente_celular,
'cliente_tipo'=>$cliente_tipo,
'cliente_documento'=>$cliente_documento
);
$comando->inserir('clientes',$dados_cliente);
That is sent this way. However, after running the command $comando->inserir('clientes',$dados_cliente);
I can not get the value of the last insertion of the bank.