The best place to declare global variable in codeigniter is the constants.php file in the directory /application/config
You can define your global variable as follows
/**
* Custom definitions
*/
define('first_custom_variable', 'thisisit');
$yourglobalvariable = 'thisisimyglobalvariable';