Hey hey.
I’ve just mastered making a php blog using dreamweaver, and now I want to make a content management system…I suppose the only real difference is that with the blog, postings can’t be removed or modified…
Does anyone know where I would be able to find a tutorial? Would much prefer a dreaweaver based one because I’m on a deadline and need it doing asap (and dreamweaver’s useful for that)
I don’t want something complex. Just a case of updating content, being able to delete or modify.
Zahir is right… writing a CMS yourself is like trying to build a car from iron ore you found in your backyard.
Given your question edit, I think you are not looking for a full-fletched CMS. I suspect that what you actually only want to do is being able to have a web interface which will allow to edit and delete the blog posts etc you make.
Nevertheless, writing this from scratch is quite an undertaking, with or without dreamweaver. You would not only need to understand PHP quite well, but also have a fair deal of knowledge of MySQL or any other database you use to store your data in.
What I would really recommend is that you download and familiarize yourself with an existing open-source PHP-based CMS and adapt that to your own needs. This still requires quite a steep learning curve if you want to modify a lot, but it is likely to be much simpler, less time-consuming and more secure than doing it ALL by yourself.
A good open-source PHP-based CMS with an excellent users community which will be happy to include you is Xoops. (http://www.xoops.org)
A more blog-focused open-source and still PHP-based is WordPress, which you probaly have heard of. (http://www.wordpress.org, not to be confused with www.wordpress.com, which is ready-made hosting).
Good luck!