Multi step/page form in PHP & CodeIgniter

后端 未结 5 1397
青春惊慌失措
青春惊慌失措 2020-12-20 07:45

I\'m trying to build a multi step/page form in PHP and CodeIgniter and I was wondering if any of you could help me.

How can I have a multi step form in CI that updat

5条回答
  •  醉酒成梦
    2020-12-20 08:13

    I like the approach of waiting on the database update until all steps have been completed. You could store all the data in the intermediate steps in a session. I suppose you could even save the model object you're using (if you're using one) in a session and after all steps have been completed you can do the database insert.

提交回复
热议问题