Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 10 different modules that are created to be used for the index page. I've created a jquery drop/sort function for the backend, so the admin of the site can change the layout of the front page without coding knowledge. However I'm having a problem finding a way to store the modules.

I have two types of modules: 1. An image, title, link and a dynamic php/mysql generated content (eg. last five reviews) 2. An image, title, link and plain text

What is the best way to store the modules that makes it possible to edit them easily in the backend? Should I store the php/mysql part in seperate php files or in mysql?

Any tips on making a good backend module solution would be appreciated.

Thanks

share|improve this question
Bear in mind that your filesystem is merely a database that has been highly optimised for retrieving files. – eggyal Nov 19 '12 at 19:49
and the database stores all its data in files (ok memory to) :-) – Dagon Nov 19 '12 at 19:54
1  
If the admin does not have much coding knowledge, I would not trust the admin to edit php files. You should make your includes as flexible as possible so that they can be configured with preferences from a database that the admin can set. – jeroen Nov 19 '12 at 20:00
@jeroen Can you elaborate your answers.. what do you mean by configure with preferences from a database that the admin can set? Any examples, tutorials etc that you can refer me to? – Chris_1983_Norway Nov 19 '12 at 20:04

1 Answer

You should be storing your files in your filesystem, and your data in the database. That is how it is designed. You may slow things down if you put your files into the database.

share|improve this answer
So if I want to edit the php module code I read/write to the file? – Chris_1983_Norway Nov 19 '12 at 19:54
1  
Yes, that is generally how it is done. Apache/PHP read from files on the filesystem. If you dynamically load from a database you have to eval() everything. This is a quirky way to do it. It can be done, but that is generally is reserved for view code in a more advanced CMS. – JMack Nov 19 '12 at 20:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.