这是我的问题的解释。
我有 2 种形式: add & add1
2 页: add.php & add1.php
和2 个函数: 函数 post_add 和函数 post_add1 当用户填写并提交表单 add 时,函数 post_add 自动重定向到用户到 add1。
我想从表单添加传递值(在用户填写并提交之后)
"echo Form::text('name', Input::get('name'));"
形成add1,因为您需要在下一个表格上键入相同的内容。
提前致谢!
只需使用 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
}
或者你可以做一个 with()....
function post_add(){
//blah blah your code.
$passvalues = Input::all();
Redirect::to('/add1')->with('values', $passvalues);
}