我使用CodeIgniter和存儲在MySQL數據庫中的CodeIgniter會話。多頁面重定向
我需要做的多頁面重定向如下所示:
`some_form.php` -> `processing.php` -> `another_form_based_on_processing.php`
一切正常,從去some_form.php
- >processing.php
。
但是,當我從processing.php
- >another_form_based_on_processing.php
重定向頁面時,我失去了會話。一個全新的會話開始,用戶信息和所有其他會話變量都消失了。
解決此問題的最佳方法是什麼?
我認爲它沒有「多頁」重定向,但經常一個頁面重定向來自processing.php到another_form_based_on_processing.php – 2010-03-06 20:50:51
的用戶沒有輸入來自processing.php - > another_form_based_on_processing.php因此用戶應該處理之後直接那裏採取。 處理應該只進行一次。 但是,只要我做了重定向('another_page_based_on_processing.php'); 我發現自己完全退出了應用程序。 – user285379 2010-03-06 21:14:12