Hi, I have a register form with around 20 fields in that form. So if customer enters the details and hit the submit button then it will added to the database. ------- queries: ->Now i want to store the details of the customer who not completed the details .Say for example :if some one comes in and enter few details and then leave the site . I need to store that details too and he returns again i need to show the details again to him. Is it possible? How to accompany this ? Anybody ahve any idea? Please advice me?
You could probably do this via javascript (ajax). When the user goes to the next tab field, there will be a onblur event that you could use to send the field data to your server and save (attached to a specific user cookie).
Ok.Using ajax to set cookie is valid point.nice idea. I will try to implement it and get back you. Thanks friends.
There may be different reason for the customer to leave the site in the middle. So what i would like to do this. If they incomplete the process than i would like to intimate them that it is not completed.So if they interested they can continue it again . It will increase the conversion of the site . Got it? Am i right?
I would suggest to divide the form in logical segments. And when one segment is filled up, submit that data via ajax to server and store it in a different table with session and ip details otherwise your server will be flooded with so many ajax requests from each field. Conversion this way may increase but also think of user's perspective, he would get a feel of his details being stolen regardless his wish to submit it or not, to avoid this, flash some kind of message to user or think of some other way of handling it.
Yes, that's possible only using ajax. Use ajax script and save the data that the user is entering. You can also save this data in the session or database
you can use cookies and some JS and php work.. thats will do it.. for instance: - user enters details - Javascript saves entered data in realtime on a cookie.. - cookie will be stored inside user's browser. now the user when he/she returns the cookie will automatically appended by browser.. - browser reads saved cookie. - fill up all fields with PHP or Javascript.. thats how you do it..