Laravel实现表单提交
程序员文章站
2024-03-08 23:54:23
首先,先做一个简单的表单页面
<...
首先,先做一个简单的表单页面
<html> <head> </head> <body> <form action="/submit" method="post"> <input type="text" name="a"></input> <input type="text" name="b"></input> <input type="text" name="c"></input> <input type="submit"></input> </form> </body> <html>
编辑一条路由
route::post('/submit','formcontroller@store');
创建一个控制器
<?php namespace app\http\controllers; //use illuminate\http\request; use app\http\requests; use request; class formcontroller extends controller { public function store(){ //var_dump(request::all()); $input=request::all(); echo $input['a'].php_eol; echo $input['b'].php_eol; echo $input['c'].php_eol; } }