Web Design and Development Forums

Allowing people to edit text without accessing the HTML Code.

This is a discussion on "Allowing people to edit text without accessing the HTML Code." within the Beginner Resources section. This forum, and the thread "Allowing people to edit text without accessing the HTML Code. are both part of the New to Web Design category.


Go Back   Webforumz.com > Beginners > New to Web Design > Beginner Resources

Welcome to Webforumz.com.
Register Now Register now!

Reply
 
LinkBack Thread Tools Rate Thread
Old Feb 1st, 2008, 10:07   #1 (permalink)
New Member
 
Join Date: Feb 2008
Location: Oxford
Age: 16
Posts: 2
Allowing people to edit text without accessing the HTML Code.

Hello!
I'm about to begin developing websites for people as the HTML/CSS programmer with the help of my colleague who specialises in Website Graphics and Templates.

I do however, have one issue.
I would like to find a method that would allow my 'clients' to edit the text of the website without editing any of the HTML code.
If anyone could answer such a question, I would be most greatful.

Thanks,
Eamon
Eamon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Feb 1st, 2008, 10:22   #2 (permalink)
Chief Moderator
 
aso186's Avatar
 
Join Date: Oct 2007
Location: UK
Posts: 713
Blog Entries: 2
Send a message via Skype™ to aso186
Re: Allowing people to edit text without accessing the HTML Code.

You would need to use a 'CMS' - or Content Management System.

A CMS enables the client or user to log in to a control panel, where they can manage, modify and add pages and files, usually with very little or no knowledge of programming language.

The CMS 'protects' (to a certain extent) the core of the site, since the user can only modify the content - i.e. text and images. A CMS will use a template you specify or create, and apply it to each subsequent page added or modified by the user.

You can of course code your own, but it requires a certain amount of work. However, there are hundreds of open source systems available you can implement with (usually) little effort.

OpenSourceCMS is a great site where you can try out an array of CMS's already installed and running.

Among them, Wordpress is the popular choice for 'blogging', whilst Drupal, Joomla, Mambo and Textpattern are more advanced 'full-blown' systems.
__________________

aso186 is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Feb 1st, 2008, 19:51   #3 (permalink)
Reputable Member
 
Join Date: Jun 2007
Location: Bellevue, SK, Canada
Age: 28
Posts: 263
Re: Allowing people to edit text without accessing the HTML Code.

Or, if you don't want that hassle.. I've done this one for a customer of mine. As long as the customer knows how to upload a file to his or her ftp this might do:

Code: Select all
<?php
//give the name to the file
$filename = "tekst.txt";

//open file
$fileToOpen = fopen($filename,"r");
//set the content of the file into a variable
$content = fread($fileToOpen, filesize($filename));
//set line break
$content = nl2br($content);
//close the file
fclose($fileToOpen);

//write the content
echo($content);
?>
Your client types the text in the .txt-file and uploads that in the same directory as the index.php.
Index.php reads the tekst.txt when it's loaded and done!
__________________
Mark Poppen - My new site: Poppen.ca :: RotateCanvas
delusion is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old Feb 7th, 2008, 20:11   #4 (permalink)
New Member
 
Join Date: Feb 2008
Location: Oxford
Age: 16
Posts: 2
Re: Allowing people to edit text without accessing the HTML Code.

Thanks very much!
Eamon is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Problem with Mac and Text Edit Claridge New to Web Design 6 Nov 29th, 2007 08:43
HTML Easy Edit v1.0 split-visionz Design & Development Software 7 Oct 25th, 2007 00:09
Edit text in popup windows. Janisf Flash & Multimedia Forum 7 Aug 2nd, 2007 15:56
xs-people.com/web.html saltedm8 Free Web Site Critique 22 Aug 21st, 2006 21:34
html cant edit TTVersion HTML Forum 13 Dec 8th, 2003 12:07



Latest Updates

All Points SEO Security Advisory - CHECK YOUR SITE NOW!

Creative Coding :: February 2008

Webforumz is sponsored by: WESH UK Web Hosting
All times are GMT. The time now is 13:56.

Sleep Study Scoring :: Free Bet :: Website Templates :: Online Betting :: Bookmakers :: Funny Quotes :: Internet Recruitment Software :: Microsoft CRM Experts :: Online Casino :: Decorated Christmas Trees :: Midwife Forums :: Football Betting :: Ecommerce Software :: Web Hosting :: Football Stats :: Dry Cleaning Collection :: xtreme wales - extreme clothing :: Apuestas :: Sharepoint Consultants :: Website Optimisation :: Office Clearance London :: Sharepoint Experts :: Sports Betting :: Casino :: Website Templates :: Web Design Development India :: Online Gambling

Powered by: vBulletin Version 3.7, Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
© 2003-2008 Webforumz.com : All Rights Reserved
Search Engine Friendly URLs by vBSEO 3.2.0 RC6


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59