Page 1 of 1

How do I submit data even if the user hangs up?

Posted: Tue Apr 15, 2008 3:41 pm
by support
To account for people who hang up, you could do the following:

Code: Select all


<catch event="connection.disconnect">
<submit
next="catchdisconnect.php" namelist="var1 var2 var3" method="post"
enctype="multipart/form-data"/>
</catch>
</form>

By adding in this disconnect event handler, you would be able to submit your data, regardless of whether the user hangs up or not.

Hope this helps.

Regards,
Plum Support