evergrean100
Technical User
I have a form that covers 5 pages and I pass the form variables from one page to another until it gets to page 5 where all form variables are submitted to action page.
If someone quits or stops during one of the pages is there anyway to store their inputs so when they come back about 1 to 10 hours later it will show their past inputs and they can continue on?
Iam not sure if I use a client session or what and how does that work??
Please advise.
If someone quits or stops during one of the pages is there anyway to store their inputs so when they come back about 1 to 10 hours later it will show their past inputs and they can continue on?
Iam not sure if I use a client session or what and how does that work??
Code:
<cfset session.SessionCity = #city#>
<form...
<cfif isDefined("session.SessionCity")>
<input type="text" name="city" value="#session.SessionCity#">
<cfelse>
<input type="text" name="city">
</cfif>
<input type="submit" value="Continue to next page">
</form>
Please advise.