954,587 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Coding help - Is this possible? I think it is.

I need a way to setup my websites so that my clients can edit content easily without knowing any programming languages. Basically I need setup the page with some programming code that will access another file such as a text file and still keep the same formatting style.

For example Ihave one client that has a menu for his restaurant and he wants to make changes to it every so often. I have another client that is a rock band and needs to change out upcoming show dates on one page as well as news on another. What is the simplest way to handle all three of these scenarios with one solution in which none of these clients need any knowledge of web-based programming languages AND without them being dependent on third party DB or FTP software. Is it possible. Can I set up a page with text forms on it that the corresponding pages can access dynamically? Any help is appreciated. Thanks in advance.

msndrstd
Newbie Poster
3 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Sure you can. You can use flat files just like you would use a database to store the information. You can even use a tool like fckeditor to act as a wysiwyg so they don't even need to know HTML to edit their pages.

stymiee
He's No Good To Me Dead
Moderator
3,360 posts since May 2006
Reputation Points: 161
Solved Threads: 38
 

Well you should have a database driven site. Where the content is stored in the database. The data would be updated via a password protected admin. You can use a number of free Content management scripts on the web

selbourne
Light Poster
46 posts since May 2005
Reputation Points: 10
Solved Threads: 0
 

Where would be the best place to start looking for these free scripts so I can learn more. What would be the best term to search for this to find what I am looking for

I tried "dynamic web content" and a few other search strings but as you can imagine they all gave me very broad results. How can I narrow it down to get what i am looking for. Thanks again.

msndrstd
Newbie Poster
3 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

Smarty ( http://smarty.php.net ) is a pretty good templating system that you can use as part of a flat file db system. You'll still need to store the editable data somewhere -- flat file or db -- and provide an edit style interface though. You'll somehow have to impose structure to it too, either through "write the file this way", or a custom form that will write the data that way.

MCP
Light Poster
44 posts since Oct 2006
Reputation Points: 14
Solved Threads: 3
 

If you're looking for a decent Content Management System, I would recommend Drupal . I find it's a pretty good one. If you don't like that, I'd say take a look in the HotScripts directory.

DennisP
Newbie Poster
23 posts since Oct 2006
Reputation Points: 10
Solved Threads: 0
 

Thanks I'll check it out. Do you think these are easy for customers to update their info on the websites I build?

msndrstd
Newbie Poster
3 posts since Dec 2006
Reputation Points: 10
Solved Threads: 0
 

If your solution is completely web based, then you don't need to worry about your clients knowing any specific languages.

Your HTML will be dynamically generated by your script, so you can change the appropriate values as necessary. You can even think of your HTML as a document template.

It's not a difficult thing to do conceptually, but it will take some work.

Puckdropper
Posting Pro
500 posts since Jul 2004
Reputation Points: 23
Solved Threads: 23
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You