Link to home
Start Free TrialLog in
Avatar of yuho
yuho

asked on

How to change the text lively?

I want to put a textfield on my web page, and let people add/delete the information (text) on that textfield. I want to know how I can do this.

I am using the free web page service provided. Then, can I do this?
Avatar of mlaiosa
mlaiosa

You need to write a server-side script.  The procedure for doing this is somewhat different depending on the type of server you page is hosted on.  Contact you page's host.
Avatar of sybe
It is easy to have an HTML page with a textfield that can be edited.

<form>
<input type="text">
</form>

is basically what you need.

It is getting harder when you want to store the information that people have written somewhere. Because you want to store it probably on the server - where our website is hosted. And it depends very much on who provides you with the space for your website if that is possible. Usually not.

For that you'll have to use some server-side script (CGI), that will process the information on the server. Usually free website hosts do NOT offer this possibility, as it dramatically increases the load on the server.

If you have found a place where that is possible, then you will need to write some scripts to do what you want. Depending on the provider, there are several languages available to do this. Most common is perl (used on Unix machines). On WinNT machines you can probably use ASP.
If you were curious about 'Text'-field in html then, as sybe mentioned above, you have to use
<FORM><INPUT TYPE="text" size="30"></FORM>.
However, if you were looking for something like 'Board', then you must have server-side script. BUT, since your site is hosted in free web space, you don't have Server-Side-Included(SSI), right?
Then, here's where you can check out :
http://world.cgiserver.net/

They provide people to download 'WWWboard(and maybe guestbook and counters too)' script for free, and one great thing about them is that they provide people a free web-space(SSI) where their script can be stored. So everything you have to do is first, go there and fill out the registration form for using the scripts and follow some instruction to use and install it properly, and lastly just add some links on your homepage.
That would be all you have do.
Al'right! I hope this is what you were looking for~
bubye~ ^.^
Avatar of yuho

ASKER

Thanks a lot! I know a little how to do this!
ASKER CERTIFIED SOLUTION
Avatar of ru
ru

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