2013-07-04 171 views
0

下面是我的問題的解釋。將表單值從一個表單/頁傳遞到另一個表單 - Laravel

我有2種形式: 添加& ADD1

2頁: add.php & add1.php

2功能: 功能post_add &功能post_add1 時用戶填寫並提交表單添加,函數post_add自動重定向到用戶add1。

我想傳遞的值(用戶後,填寫並提交)從形式添加

"echo Form::text('name', Input::get('name'));"

形成ADD1,因爲你需要輸入下一個表格上的同樣的事情。

在此先感謝!

+0

發佈一些代碼,將真正幫助!謝謝! – hungerstar

+0

您如何將用戶從一種表單重定向到另一種表單? – hungerstar

+0

這是一個重定向功能:return Redirect :: to_action('products @ add1');在成功完成表單後,重定向到另一個頁面。 – Alex

回答

1

只要使用Session :: flash();

是這樣的...

function post_add(){ 
//blah blah your code. 
$passvalues = Input::all(); 
Session::flash('values', $passvalues);  
Redirect::to('/add1'); 

    } 

    function post_add1(){ 
    //Now you have access to that input... 

    $oldinput = Session::get('values'); 
    //do whatever you need to with the old/passed input 
    } 

或者你可以做一個與()....

 function post_add(){ 
//blah blah your code. 
$passvalues = Input::all(); 

Redirect::to('/add1')->with('values', $passvalues); 

    } 
+0

沒問題.... – KyleK

+0

非常感謝:) –

相關問題