Home > Article > Backend Development > Detailed explanation of how to use Laravel to implement simple form submission
How to use Laravel to implement simple form submission? This article shares with you a simple example of how to implement form submission in the process of using laravel. It is very simple and is recommended here to friends who are learning laravel. I hope to be helpful.
First, make a simple form page
<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>
Edit a route
Route::post('/submit','FormController@store');
Create a controller
<?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; } }
Related recommendations:
Explore how Laravel’s middleware is implemented
Detailed explanation of how to implement Adding a custom global function in Laravel
Detailed explanation of how Laravel modifies .env configuration through the background
The above is the detailed content of Detailed explanation of how to use Laravel to implement simple form submission. For more information, please follow other related articles on the PHP Chinese website!