What is meant by content management system?
Answer Posted / dhamu
A Content Management System ( CMS ) is used to add, edit,
and delete content on a website. For a small website, such
as this, adding and deleting a page manually is fairly
simple. But for a large website with lots of pages like a
news website adding a page manually without a content
management system can be a headache.
A CMS is meant to ease the process of adding and modifying
new content to a webpage. The pages content are stored in
database, not in the file server.
This tutorial will present an example of a simple content
management system. You will be able to add, edit and delete
articles using HTML forms.
For the database table we'll call it the news table. It
consist of three columns :
* id : The article's id
* title : The title of an article
* content : The article itself
| Is This Answer Correct ? | 18 Yes | 4 No |
Post New Answer View All Answers
How do you create an array in php?
What are traits?
What does $_cookie means?
What is the difference between die () and exit () in php?
What is php session and how it works?
Why echo is faster than print in php?
Should I use mysqli or pdo?
Which is incorrect with respect to separating php code and html?
What is an anti csrf token?
How would you open a directory for reading in php?
Which function gives us the number of affected entries by a query?
Why session is required?
When is a conditional statement ended with an endif?
Is age interval or ordinal data?
What is the use of $_server and $_env?