我使用笨1.7.1.Ok這裏是有史以來表單提交的scenario.When,我需要做兩件事情重定向和set_select問題
1)堅持在下拉列表中選擇的值。 2)使用session->set_flashdata()
,我需要設置自定義數據庫消息。
現在,我們知道,我們需要重定向之前,這個閃存數據可以設置。
這是我寫的代碼。
if ($this->form_validation->run() == TRUE){
$this->session->set_flashdata(‘msg’, ‘Taha Hasan’);
redirect(current_url());
$this->ShowReceiveInventoryView();
}
另外我在下拉視圖中使用set_select來保存該值。
<select name=「myselect」>
<option value=「one」 <?php echo set_select(‘myselect’, ‘one’, TRUE); ?> >One</option>
<option value=「two」 <?php echo set_select(‘myselect’, ‘two’); ?> >Two</option>
<option value=「three」 <?php echo set_select(‘myselect’, ‘three’); ?> >Three</option>
</select>
現在,這裏是......而是因爲我重定向到當前頁面顯示提示信息的問題,下拉set_select值丟失!默認值出現在選擇:(..如果我刪除代碼中的重定向線,下拉值是presisted但閃存數據沒有設置!!!
希望你們有這個問題的解決方案...
感謝您的幫助先生。 – Taha