Link to home
Start Free TrialLog in
Avatar of DarrenMagicx
DarrenMagicx

asked on

A Simple CMS

I am good web designer (graphics and css) but I wanted to know if there is a simple CMS system that allows me to control data in a website with a backend without using a complex one like wordpress.   EXAMPLE OF WHAT I MEAN.   I build a simple pizzeria website, the client doesn’t need to control the text on every page, but rather just log into a CMS and update maybe the daily specials.  There has to be something out there that allows you to log into a simple cms where you fill out html in the box and then it shows you what could you should put to export the content?

Thanks!
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

I have made my own several times.  Make the content pages load the info from a database and then provide a login to a set of admin pages for them to enter the data in forms that POST the data to the database.  Something that simple is not something that people will usually invest time in for others to use.
Avatar of phpwebguy
phpwebguy

I stumbled upon simple news cms a while back. It is a simple CMS system, but flexible enough to be extended with add-ons.

http://snewscms.com/

I hope this helps

John Lam
This article shows the design pattern that I have used for similar things.  Please read it over and post back if you have any questions.
https://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/A_5300-Giving-Your-Client-Control-of-a-Chalk-Board-on-her-Web-Site.html
Avatar of DarrenMagicx

ASKER

None of these solutions are close,  I am looking for something that just simply exports a box of html to a php page.  
I am looking for something that just simply exports a box of html to a php page.

I am not sure where you stand on the learning curve of HTML and PHP, so please forgive me if I am talking down to you.  PHP is a server-side scripting language.  PHP is used to create HTML.  The created HTML is the web page.  So there is no such thing as a PHP page.  There is a PHP script that runs on the server.  The PHP script is used to create the web page.  In the course of creating a web page, the PHP script may draw on environmental variables as well as its underlying data model, often a MySQL data base.  The PHP script may ask for client input, receive it and process it, modifying the underlying data model and thereby changing the future contents of the created HTML.  SitePoint publishes a good book that talks about how all of this is done.
http://www.sitepoint.com/books/phpmysql4/

Did you read the article here?  It shows how one might do what you described in the daily specials.
https://www.experts-exchange.com/Web_Development/Web_Languages-Standards/PHP/A_5300-Giving-Your-Client-Control-of-a-Chalk-Board-on-her-Web-Site.html

Please describe what design pattern you would want that is different from the design pattern shown in the article.  Thanks, ~Ray
Thanks for you response Ray,  

  I know that the proper way to build a php driven database website would be by either learning that book or having a programmer do it for me.   What I am looking for is a simple solution which may not even exist.   My question was is there a simple program which I can install on my server which does the work for me.  With all the programs out there today I find it hard to believe that one doesn't exist like the one I am looking for.   I am very good with wordpress and usually build my sites around them.  But wordpress is a huge overkill for what I am trying to achieve.

So here is the example (if a program like this exists that anyone is aware of :)  )    the example is I install a simple admin system.  In this system I log in.  Then I click an article. lets say I name it article 3.  I write some plain text in the field.  and then it shows me the code to paste into my document to pull just this one field out of the database onto my webpage which I can style once its on it.

I know I can achieve this by simply making a databse and using code to pull it out, but the problem is I need just that simple admin panel so that a user can log in like a client and update his articles for those sections.  and that it!  =)   does anything exist like this? or should I put it down for santa this year?  :)
ASKER CERTIFIED SOLUTION
Avatar of Ray Paseur
Ray Paseur
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
One of the flaws in your concept is that it requires you to be able to have write access to the files in your admin pages.  Opening files and directories up to being written to from the web is a bad idea from a security viewpoint.  Using a database at least requires a login from the PHP page.

I understand that you feel that Wordpress is overkill.  But it is a 5 minute install including selecting a new theme.  Takes less time than posting and answering this question.  On many hosting companies, it is a 'One-Click' install to boot.
Thank you Ray, this is perfect for what I needed, just a simple way to update text for the client! This will work perfect!