if (array_key_exists("enviar", $_POST)) {
    $id = $_POST["ID"];
    $nome = $_POST["txtNome"];
    $telefone = $_POST["txtTelefone"];
    $dtaAdmissao = $_POST["dtaAdmissao"];
    $perfil = $_POST["cbPerfil"];
    if ($nome == "" || $telefone == "" || $bairro == "" || $estado == "0" || $cidade == "") {
        echo "Preencha as informações corretamente.";
        exit;
    } else {
        if ($id != "") {
            $SQL = "UPDATE principal_usuarios SET nome = '" . $nome . "', telefone = '" . $telefone . "', dtaAdmissao = '" . $dtaAdmissao . "', perfil = " . $perfil . " WHERE clientes_id = " . $id;
        } else {
            $SQL = "INSERT INTO principal_usuarios (nome, telefone, perfil, data_admissao) VALUES('" . $nome . "', '" . $telefone . "', '" . $perfil . "', " . $dtaAdmissao . ")";
        }
        $connect->conectar();
        $connect->set("sql", $SQL);
        $retorno = $connect->executar();
        if ($retorno > 0) {
            echo "<script>alert('Cliente atualizado/inserido com sucesso.');</script>";
            echo "<script>window.location = 'colaboradores.php';</script>";
        } else {
            echo "<script>alert('Erro ao atualizar/inserir o cliente.');</script>";
        }
    }
}
?>

<!DOCTYPE html>
<html lang="pt-br">