Click to See Complete Forum and Search --> : Point me in the right direction


gaeBolga
10-13-2003, 09:39 AM
Can someone please point me in the right direction?

This is what I want to accomplish.

The page has a simple form for input on it. When a user enters in
information and clicks the button, the current list of items is
displayed. So, if the page looks like this:


-----------------
| tweeking | Add
-----------------


Current List
one
three

After Add
one
three
tweeking

I was thinking array, I think I will have to add it to an array and
then rewrite the array to the page.

Thanks!

Khalid Ali
10-13-2003, 10:01 AM
yes array will work....the question is that what level of persistence is required with this information,do you want this info to be saved?

A not very good solution in that case will be to use cookies to store data(IE can't handle more then 4k in a cookie NS has not problem with larger cookies sizes)

A good idea will be to use a database, for that you will need to use a webserver,
so choices are all open for you..

:D