View Single Post
Old 10-11-2012, 06:52 PM   PM User | #3
anotherJEK
Regular Coder

 
Join Date: Aug 2010
Location: Now Southern Oregon. I was born and had lived my life in Los Angeles until relocating last year (2010)
Posts: 152
Thanks: 41
Thanked 1 Time in 1 Post
anotherJEK is an unknown quantity at this point
saving changed data

There are several ways, assuming user has javascript active you add form
input type hidden fields and write the data changed to it, or form text fields
that receive user data (if that is what you are doing). Then at some point the
form has to be submitted. Saving the data is actually a server side process.

You can use ajax or have the page submit to itself and use php in the page
to look for GET of POST vars and do what is necessary on the server side.
Data bases can be used if available, or create flat file (plain text) files that
save data.

I use php on the server side. But this off topic for this forum section as I can
see.
anotherJEK is offline   Reply With Quote