Is there any way to take information submitted through a form and make it able to be stored into a variable permanently, or until it is written over?
Aside from storing the information in a database.
Thanks. 😃
if you register the variable as a session variable, it is available as long as the session exists
which most likely isn't permanent, you could use a file for storage instead of a db
A file should work quite nicely stolzy, thanks for the idea.