BP’s annual report on proved global oil Spreadsheet reserves says that as of the end of 2013, Earth has nearly 1.688 trillion barrels of crude, which will last 53.3 years at current rates of extraction. This figure is 1.1 percent higher than that of the previous year.Jul 14, 2014
[insert_php]
require 'api-library-master/vendor/autoload.php';
use Mautic\Auth\ApiAuth;
use Mautic\MauticApi;
$settings = array(
'userName' => 'navid@theinsidebid.com',
'password' => 'Testing4InsideBid'
);
// Initiate the auth object specifying to use BasicAuth
$initAuth = new ApiAuth();
$auth = $initAuth->newAuth($settings, 'BasicAuth');
$apiUrl = "https://physics.fm/mautic/";
$api = new MauticApi();
$contactApi = $api->newApi("contacts", $auth, $apiUrl);
[/insert_php]