Link to home
Start Free TrialLog in
Avatar of krutarth941
krutarth941

asked on

Content management system using PHP and MySQL

hello, I am creating a fund raising website and I want to build a content management system using the concept of object oriented programming. Can someone please recommend me good links.
Avatar of Loganathan Natarajan
Loganathan Natarajan
Flag of India image

Why don't use the existing CMS tools, like http://www.joomla.org/
Avatar of krutarth941
krutarth941

ASKER

My project leader is not happy with it. He want me to write down code.
OK, to write it with OOP's ,.. you must learn the OOP's concept first .. do you need links for OOP's?
I am familiar with basic concepts of object oriented programming. yes, I would still like you to give me a link for that.

There is a long and hard way ahead of you. Do you know Zend Framework ?
No, I am not aware of it. What is it about?
If you are familiar with basic OOP's , then you can go with any framework which applies OOP's already.

For example CakePHP - http://cakephp.org/
CI - http://codeigniter.com/
http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/

This is a simple CMS example with OOPS .

and here you a bit advanced than the previous one

http://www.intranetjournal.com/php-cms/


 Check if these are helpful to you.
Thanks for the information. I am checking the links now.
the link that you gave me: http://www.intranetjournal.com/php-cms/

I downloaded those files, and when I am trying to run them on server , I am getting errors.
you may need to make setting in  SystemComponent.php

// System variables
$settings['siteDir'] = '/path/to/your/intranet/';

// Database variables
$settings['dbhost'] = 'hostname';
$settings['dbusername'] = 'dbuser';
$settings['dbpassword'] = 'dbpass';
$settings['dbname'] = 'mydb';

or what is error exacty?
Yes, I have made those changes. When I try to run newAtricle.php page, it says There was a problem with:
Section


I have entered data in rest of the fields. It should get entered in the database. But that's not working. It gives me the above mentioned error.
ASKER CERTIFIED SOLUTION
Avatar of pius_babbun
pius_babbun

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
I tried adding an article and in the section box I placed an integer. But, the section box doesn't let me put any values into it.
Try Changing  the $HTTP_POST_VARS to $_POST
If you look at sourceforge.net there are lots of open source projects which you can use/modify/study for your usage.

Source Forge Content Management
It was bit helpful.