Codecube
Codecube

Reputation: 59

Codeigniter - Avoid repeated code

I have a database table with some information about the website such as the site title, phone numbers etc... This information is needed on every page. Is there a way i could get those database values into variables on every page without having to write the same code in every page controllers?

Thanks, Marais

Upvotes: 0

Views: 282

Answers (1)

codegenin
codegenin

Reputation: 450

How about using autoloading of codeigniter AutoLoader

Create your custom helper and the method to get the data you needed from your database, then just call the method on every view file that you need it to be shown.

Upvotes: 1

Related Questions