Link to home
Start Free TrialLog in
Avatar of krutarth941
krutarth941

asked on

PHP

I want to create a content management system in PHP. I am creating a fund raising website.  I want administrator to have all the rights. Admin should be able to make changes in the header section, footer section and the content section of the page. I would like to execute this using object oriented programming approach. How can I do this?
Avatar of ecdmonkey
ecdmonkey
Flag of United Kingdom of Great Britain and Northern Ireland image

Have you thought about using Drupal or similar to achieve your aims?  The software is free and easily customisable to achieve exactly what you are looking for without having to code a CMS from scratch.

just a thought
Avatar of krutarth941
krutarth941

ASKER

Yes, I did think of using joomla, but, my project leader was not happy with it. He would be more happy to see me do the coding part from the scratch.
This is rather a big topic. Consider - at least - if not choosing a ready CMS, just looking at some of the code of the one. Do not reinvent the wheel. There should be something really that fits.
http://www.opensourcecms.com/
If you ask: how ? It would not be a one word answer. Plan things. Do a diagram, plan the database.
Maybe Wordpress then ?
ASKER CERTIFIED SOLUTION
Avatar of scifo_dk
scifo_dk
Flag of Denmark 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
The link you gave me was very helpful. Thank you.
I will do more research and then I will get back to you.
Can you please explain me the use of this -> keyword in PHP
It is used in object oriented php (OOPHP) like this:
<?php

$obj = (object) array('foo' => 'bar', 'property' => 'value');

echo $obj->foo; // prints 'bar'
echo $obj->property; // prints 'value'

?>

Open in new window


More info here:
http://www.php.net/manual/en/language.oop5.php
great, thanks
Your welcome