As a php learner, I have been experimenting with some of the smaller PHP CMS’. All CMS’ that I have used employ a database abstraction layer.
Am I correct in assuming that this would be a characteristic of just about all PHP CMS’?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The only thing inherently characteristic of a CMS is that it separates content from display. Where or how it stores that content is arbitrary. The mechanism for connecting to the data store is also of no consequence. What you might think of as a “traditional” database is common but by no means necessary – any data backing is a database of content – text files, XML, SimpleDb or Google App Engine, etc.