I want to avoid writing to DB and use constants/array for lang files etc.
i.e:
$lang = array (
'hello' => 'hello world!'
);
and be able to edit it from the back office. (then instead of fetching it from the poor db, i would just use $lang['hello']..).
what are you suggesting for the best and efficient way to pull it of?