CINXE.COM
Global Business Reports - About
<!DOCTYPE html> <html lang="en"> <head> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-N3N6VCF');</script> <!-- End Google Tag Manager --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta property="og:url" content="https://www.gbreports.com/about" /> <meta property="og:type" content="website" /> <meta property="og:title" content="GBR - About" /> <meta property="og:description" content="About" /> <meta property="og:image" content="https://www.gbreports.com/images/logo.png" /> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="theme-color" content="#ffffff"> <title>Global Business Reports - About</title> <!-- Bootstrap Core CSS --> <link href="/bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <link href="/css/gbreports.css?5797" rel="stylesheet"> <!-- Custom Fonts --> <link href="/bower_components/components-font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <script src="/bower_components/jquery/dist/jquery.min.js"></script> <script src="/bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <link href="/js/zozo/css/zozo.accordion.css" rel="stylesheet"> <script src="/js/zozo/js/zozo.accordion.js"></script> <script src="/bower_components/is_js/is.js"></script> <script type="text/javascript" src="/js/colorbox-master/jquery.colorbox-min.js"></script> <link rel="stylesheet" href="/js/colorbox-master/colorbox.css" type="text/css" media="screen" /> <script src="https://js.stripe.com/v3/"></script> <script> // stripe integration var stripe = Stripe('pk_test_2yM8SD4CrhjdDWoeMwFeE3T3'); var elements = stripe.elements(); // Custom styling can be passed to options when creating an Element. // (Note that this demo uses a wider set of styles than the guide below.) var style = { base: { color: '#32325d', lineHeight: '24px', fontFamily: '"Helvetica Neue", Helvetica, sans-serif', fontSmoothing: 'antialiased', fontSize: '16px', '::placeholder': { color: '#aab7c4' } }, invalid: { color: '#fa755a', iconColor: '#fa755a' } }; // Create an instance of the card Element var card = elements.create('card', {style: style, hidePostalCode: true}); $(document).ready(function() { $("#gbreports-accordion").zozoAccordion({ theme: "gbreports", orientation: "horizontal", active: 1, contentHeight: 150, headerSize: 46, headerFontSize: 1.5, responsive: true, width:1140, minWindowWidth: 720, shadows: false, showIcons: false, bordered: false, vertical: { headerSize: 38, headerFontSize: 1.1 }, scrollable: true, animation: { easing: "easeOutQuart", duration: 600 }, }); if ($("#gbreports-accordion").length){ $("#gbreports-accordion").data("zozoAccordion").first(); } $("input[name='subscriptionType']").change(function() { if ($(this).is(":checked")) { $(".signupTypeOption").removeClass("selected"); $(this).closest(".signupTypeOption").addClass("selected"); console.log($(this).val()); if($(this).val() == "monthly"){ $(".subscription_price").html("$9"); } else if($(this).val() == "annual"){ $(".subscription_price").html("$99"); } } }); $(".changeStep").click(function(e) { e.preventDefault(); var targetStep = $(this).attr('data-targetStep'); signup(targetStep); }); // Add an instance of the card Element into the `card-element` <div> if($('#card-element').length) { card.mount('#card-element'); // Handle real-time validation errors from the card Element. card.addEventListener('change', function(event) { var displayError = document.getElementById('card-errors'); if (event.error) { displayError.textContent = event.error.message; } else { displayError.textContent = ''; } }); } $("#countriesPage .continentButton").click(function(e) { var targetContinent = $(this).attr('data-continent'); $("#countriesPage .continentButton").removeClass("active"); $(this).addClass("active"); //$("#countryList a").show(); if(targetContinent != "all"){ $("#countryList a[data-continent='"+targetContinent+"']").fadeIn(); $("#countryList a:not([data-continent='"+targetContinent+"']").hide(); } else{ $("#countryList a").fadeIn(); } }); $(".showAllPartners").click(function(e) { e.preventDefault(); $(".partner-list .event").removeClass("hidden"); $(this).addClass("hidden"); }); }); function signup(step){ var titles = [ "", "Create Account", "Select Membership", "Billing Address", "Payment & Confirmation" ]; if(signupValidation(step-1)){ if(step < 5){ $("#signupPage h1").html(titles[step]); $("[id^=formStep]").hide(); $("#formStep"+step.toString()).show(); $('.step').removeClass("active"); for(var i=1; i<=step; i++){ $('*[data-step="' + i + '"]').addClass("active"); } } if(step == 4){ if ($("input[name='subscriptionType']:checked").val() == "registeronly"){ $(".subscriptionOnly").hide(); } else{ $(".subscriptionOnly").show(); } } // last screen if(step == 5){ console.log("submitted"); if ($("input[name='subscriptionType']:checked").val() != "registeronly"){ console.log("payment process 1"); $(".lastButton").prop('disabled', true); $(".ajaxLoading").show(); stripe.createToken(card, { 'name': $('#cc_name').val().trim(), 'address_line1': $('#billing_address').val().trim(), 'address_city': $('#city').val().trim(), 'address_state': $('#state').val().trim(), 'address_zip': $('#zip').val().trim(), 'address_country': $('#billing_country').val().trim() }).then(function(result) { if (result.error) { console.log("payment process error"); // Inform the user if there was an error var errorElement = document.getElementById('card-errors'); errorElement.textContent = result.error.message; $(".lastButton").prop('disabled', false); $(".ajaxLoading").hide(); } else { console.log("payment process sendsignupdata"); // Send the token to your server sendSignupData(result.token); } }); } else{ sendSignupData(null); } } } } function sendSignupData(stripeToken){ var ajaxData = $('form').serialize() if(stripeToken != null){ //console.log("stripe token: "); //console.log(stripeToken); //console.log("stripe token --- eof"); ajaxData = ajaxData + "&stripe_token="+stripeToken.id; } $.ajax({ type: "POST", url: "/signup", data: ajaxData, processData: false, beforeSend: function (xhr) { // Function needed from Laravel because of the CSRF Middleware var token = "tmwn2JrnnIzVp4JaAchhgQpUdWC2DmjgoHd0ZMn4"; if (token) { return xhr.setRequestHeader('X-CSRF-TOKEN', token); } $(".lastButton").prop('disabled', true); $(".ajaxLoading").show(); }, success:function(data) { var errors = []; var inputs = []; //$('#save_message').html(data.message); //console.log("-----------------------------------"); console.log(data); if(typeof data.id !== "undefined"){ $(".step").hide(); $(".finished").show(); $("[id^=formStep]").hide(); $("#formFinished").show(); $("#signupPage h1").html("Thank you!"); return; } if(typeof data.jsonBody.error.code !== "undefined"){ errors.push(data.jsonBody.error.message); showSignupError(errors, inputs, 4); var displayError = document.getElementById('card-errors'); displayError.textContent = data.jsonBody.error.message; $(".lastButton").prop('disabled', false); $(".ajaxLoading").hide(); } } }); } function signupValidation(step){ clearErrors(); var errors = []; var inputs = []; // step one var first_name = $('#first_name').val().trim(); var last_name = $('#last_name').val().trim(); var email = $('#email').val().trim(); var password = $('#password').val().trim(); var country = $('#country').val().trim(); var sector = $('#sector').val().trim(); var jobtitle = $('#jobtitle').val().trim(); // step three var billing_address = $('#billing_address').val().trim(); var apartment = $('#apartment').val().trim(); var city = $('#city').val().trim(); var state = $('#state').val().trim(); var zip = $('#zip').val().trim(); var billing_country = $('#billing_country').val().trim(); var phone = $('#phone').val().trim(); // step four var cc_name = $('#cc_name').val().trim(); //var cc_number = $('#cc_number').val().trim(); //var cc_expire = $('#cc_expire').val().trim(); //var cc_securitycode = $('#cc_securitycode').val().trim(); var keep_informed = $('#keep_informed').is(":checked"); var aggreement = $('#aggreement').is(":checked"); switch (step){ case 1: //break; // step one validation var emailCheck = $.ajax({ type: "POST", url: "/signup/checkemail", data: 'email='+email, processData: false, async: false, beforeSend: function (xhr) { // Function needed from Laravel because of the CSRF Middleware var token = "tmwn2JrnnIzVp4JaAchhgQpUdWC2DmjgoHd0ZMn4"; if (token) { return xhr.setRequestHeader('X-CSRF-TOKEN', token); } }, success:function(data) { if(data == true){ errors.push("Email already exists"); inputs.push("email"); } } }); if (first_name.length < 2){ errors.push("First name is required"); inputs.push("first_name"); } if (last_name.length < 2){ errors.push("Last name is required"); inputs.push("last_name"); } if (email.length < 2 || is.not.email(email)){ errors.push("Valid email is required"); inputs.push("email"); } if (password.length < 5){ errors.push("Password must be at least 5 characters"); inputs.push("password"); } re = /[0-9]/; if(!re.test(password)) { errors.push("Password must contain at least one number (0-9)!"); inputs.push("password"); } if (country < 1){ errors.push("Country is required"); inputs.push("country"); } if (sector < 1){ errors.push("Sector is required"); inputs.push("sector"); } if (jobtitle.length < 2){ errors.push("Job title is required"); inputs.push("jobtitle"); } break; case 3: //break; // step three validation if (billing_address.length < 2){ errors.push("Billing address is required"); inputs.push("billing_address"); } /*if (apartment.length < 2){ errors.push("Apartment is required"); inputs.push("apartment"); }*/ if (city.length < 2){ errors.push("City is required"); inputs.push("city"); } if (state.length < 2){ errors.push("State is required"); inputs.push("state"); } if (zip.length < 2){ errors.push("ZIP is required"); inputs.push("zip"); } if (billing_country.length < 2){ errors.push("Country is required"); inputs.push("billing_country"); } if (phone.length < 10){ errors.push("Phone number is required and must be at least 10 numbers in length"); inputs.push("phone"); } break; case 4: // step four validation if (cc_name.length < 2 && ($("input[name='subscriptionType']:checked").val() != "registeronly")){ errors.push("Name on card is required"); inputs.push("cc_name"); } /* if (is.not.creditCard(cc_number)){ errors.push("Valid credit card number is required"); inputs.push("cc_number"); } if (cc_expire.length < 2){ errors.push("Credit card expiration date is required"); inputs.push("cc_expire"); } if (cc_securitycode.length < 2){ errors.push("Security code is required"); inputs.push("cc_securitycode"); } */ if (!aggreement){ errors.push("Subscriber agreement must be accepted"); inputs.push("aggreement"); } break; } if(errors.length > 0){ showSignupError(errors, inputs, step); return false; } return true; } function clearErrors(){ $('.errorLine').html(" "); $(".form-group").removeClass("has-error"); } function showSignupError(errors, inputs, step){ clearErrors(); var msgError = ""; $.each(errors, function() { msgError = msgError + "<br>" + this; }); $(".errorStep" + step.toString()).html(msgError); $.each(inputs, function() { $("#"+this).parent().addClass("has-error"); }); } </script> <script>window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); t._e = []; t.ready = function(f) { t._e.push(f); }; return t; }(document, "script", "twitter-wjs"));</script> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-N3N6VCF" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.8&appId=437397456398991"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <script> function fbShare(url, title) { winWidth = 500; winHeight = 300; var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('http://www.facebook.com/sharer.php?p[title]=' + title + '&u=' + url, 'sharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } function twitterShare(url, title) { winWidth = 500; winHeight = 300; var winTop = (screen.height / 2) - (winHeight / 2); var winLeft = (screen.width / 2) - (winWidth / 2); window.open('http://twitter.com/share?text=' + title + '&url=' + url, 'twsharer', 'top=' + winTop + ',left=' + winLeft + ',toolbar=0,status=0,width=' + winWidth + ',height=' + winHeight); } </script> <div id="wrapper"> <header> <div id="header-content" class="container"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> <div class="logo"> <a href="/"><img src="/images/logo.png"></a> </div> </div> <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> <div class="row hidden-xs"> <div class="col-lg-12 col-md-12 text-right socialmedia"> <a href="https://www.linkedin.com/company/gbreports/" target="_blank"><img src="/images/linkedin.png"></a> <a href="https://twitter.com/gbreports" target="_blank"><img src="/images/twitter.png"></a> <a href="https://www.facebook.com/GBReports/" target="_blank"><img src="/images/facebook.png"></a> </div> </div> <div class="row"> <div class="col-lg-12 col-md-12 text-right membership"> </div> </div> </div> </div> </div> <div id="nav-wrapper"> <!-- Navigation --> <nav class="navbar navbar-default navbar-static-top container" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <!-- /.navbar-header --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li ><a href="/">HOME</a></li> <li ><a href="/articles">ARTICLES</a></li> <li ><a href="/interviews">INTERVIEWS</a></li> <li ><a href="/sectors">SECTORS</a></li> <li ><a href="/countries">COUNTRIES</a></li> <li ><a href="/publications">PUBLICATIONS </a></li> <li ><a href="/partners">PARTNERS</a></li> <li ><a href="/contact">CONTACT</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <form class="navbar-form" role="search" action="/search"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search" name="q"> <div class="input-group-btn"> <button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button> </div> </div> </form> </ul> </div><!-- /.navbar-collapse --> </nav> </div> </header> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-8 col-sm-12 col-xs-12" id="homepage-left"> <section class="staticpagetitle row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <h1 style="width:100%; font-size:1rem;">ABOUT GBR</h1> </div> </div> </div> </section> <section class="recruitmentinfo"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <p>Headquartered in Singapore and with offices in Istanbul, Global Business Reports (GBR) was established in 2001 in order to provide first-hand information for global business decision makers.</p> <p>In an age where cross boundary trade and investment are driving factors for businesses, information is crucial. Precise sectorial reports help companies understand and expand their markets, improve their sourcing chain, target their investments and discover the trends affecting their industry around the world.</p> <p>Global Business Reports (GBR) provides in-depth analyses and up-to-date insights into all aspects of the mining, energy, chemicals and life sciences industries globally. Our research includes face-to-face meetings with the main protagonists in the field to form an accurate picture of the actual situation on the ground.</p> </div> </div> </section> <section class="staticpagetitle row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <h1 style="width:100%; font-size:1rem;">MEDIA</h1> </div> </div> </div> </section> <section class="recruitmentinfo"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <a href="/gbr_logo.eps">GBR Logo</a> (vector, eps format)<br> <a href="/gbr_logo.ai">GBR Logo</a> (vector, ai format)<br> <a href="/gbr-logo_2400x1600.jpg">GBR Logo</a> (2400x1600px 300dpi, jpeg format)<br> <a href="/gbr-logo_1200x800.jpg">GBR Logo</a> (1200x800px 300dpi, jpeg format)<br> <br><br><br><br><br><br> </div> </div> </section> </div> <div class="col-lg-4 col-md-4 col-sm-12 col-xs-12 mb30" id="homepage-right"> <div class="row"> <div class="col-lg-11 col-md-11 col-sm-12 col-xs-12 right-inner pull-right"> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">MACIG</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/sectors/mining?macig=1"><img src="/images/macig.jpg"></a> </div> </div> </section> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">SPANISH</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/sectors/mining?spanish=1"><img src="/images/spanish.jpg"></a> </div> </div> </section> <!-- NEWSLETTER --> <section id="newsletter-subscription" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">SUBSCRIBE TO OUR NEWSLETTER</h1></div> </div> <div class="row"> <div class="col-md-12 text-center"> <a href="/subscription"><img src="/images/subscribe-banner.png"></a> </div> </div> </section> <!-- RECENT PUBLICATIONS --> <section id="recently-published" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">RECENT PUBLICATIONS</h1></div> </div> <div class="row mb20"> <div class="col-md-12 text-center"><a href="/publication/macig-2025"><img src="/photos/publication-photos/2025/cover-MACIG-2025-print.jpg"></a></div> </div> <div class="row mb20"> <div class="col-md-12"> <strong>MACIG 2025 - Mining in Africa Country Investment Guide</strong><br><br> It is said that mining is a patient industry. Current demand projections are not. Demand for minerals deemed ‘critical’ is set to increase almost fourfold by 2030, according to the UN. Demand for nickel, cobalt and lithium is predicted to double, triple and rise ten-fold, respectively, between 2022 and 2050. The world will need to mine more copper between 2018 and 2050 than it has mined throughout history. 2050 is also the deadline to curb emissions before reaching a point of ‘no return.’ The pace of mineral demand and the consequences of not meeting it force the industry to act fast and take more risks. Mining cannot afford to be a patient industry anymore. The scramble for supply drives miners back to geological credentials, and therefore to places like the African Central Copperbelt. </div> </div> <div class="row"> <div class="col-md-12"><a href="/publications" class="more">MORE PREVIOUSLY PUBLISHED</a></div> </div> </section> <!-- PARTNERS --> <section id="partners" class="sidemenu mb30"> <div class="row"> <div class="col-md-12"><h1 class="tiny">PARTNER EVENTS</h1></div> </div> <div class="row mb30"> <div class="col-md-6"> <a href="/partners"><img src="/photos/partners/2025/PDAC_2025_logo_RGB_Vert_with_tagline.png"></a> </div> <div class="col-md-6"> <a href="/partners"><img src="/photos/partners/2025/CIM_Connect_-_Full_Colour_Logo___Tagline___Date__29Jul24_.png"></a> </div> </div> <div class="row"> <div class="col-md-12"><a href="/partners" class="more">SEE ALL</a></div> </div> </section> </div> </div> </div> </div> </div> <div id="upgrade-footer"> <div class="container"> <div class="row"> <div class="col-lg-4 col-md-4 col-sm-6 col-xs-12"> <div class="title-grey">SUBSCRIBE TO OUR</div> <div class="title-white">NEWSLETTER</div> </div> <div class="col-lg-5 col-md-4 col-sm-6 col-xs-12"> <ul> <li>Get GBR content delivered to your inbox</li> <li>Receive industry based news</li> <li>Completely free, e-mail only</li> </ul> </div> <div class="col-lg-3 col-md-4 col-sm-12 col-xs-12"> <a href="/subscription" class="signupnow center-block"><img src="/images/subscribenow.png"></a> </div> </div> </div> z </div> <footer> <div class="container"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-4 col-xs-12"> <a href="#" class="footerlogo"><img src="/images/footer-logo.png"></a> </div> <div class="col-lg-6 col-md-6 col-sm-8 col-xs-12"> <ul> <li><a href="/about">ABOUT GBR</a></li> <li><a href="/cookiespolicy">COOKIES POLICY</a></li> <li><a href="/about">MEDIA</a></li> <li><a href="/recruitment">RECRUITMENT</a></li> <li><a href="/contact">CONTACT</a></li> </ul> </div> </div> </div> </footer> </div> <!-- /#wrapper --> </body> </html>