Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 26, 2017 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/104b7f377e284a6e15901d75b4381b49 to your computer and use it in GitHub Desktop.
Save billerickson/104b7f377e284a6e15901d75b4381b49 to your computer and use it in GitHub Desktop.
<?php
/**
* EA CRM.
*
* Load all the requirements.
*
* @package EA_CRM
* @since 1.0.0
* @copyright Copyright (c) 2014, Jared Atchison & Bill Erickson
* @license GPL-2.0+
*/
// Load 'em up
require_once( 'settings.php' ); // Settings
require_once( 'meekrodb.2.2.class.php' ); // DB handler class
require_once( 'functions.php' ); // General functions
// Initialize DB
$db = new MeekroDB( 'localhost', $settings['db_user'], $settings['db_pass'], $settings['db_name'] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment