将表单值从一个表单/页面传递到另一个表单/页面 - Laravel

时间:2013-07-04 20:29:28

标签: php forms laravel

以下是我的问题的解释。

我有两种形式: 添加& ADD1

2页: add.php& add1.php

2个功能: 功能post_add&函数post_add1 当用户填写并提交表单添加时,函数post_add会自动重定向到用户add1。

我想从表单添加

传递值(在用户填写并提交之后)

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

形成 add1 ,因为您需要在下一个表单上键入相同的内容。

提前致谢!

1 个答案:

答案 0 :(得分: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);

  }