Detailed explanation of Laravel's form submission function

巴扎黑
Release: 2023-03-15 14:40:01
Original
2754 people have browsed it

This article shares with you a simple example of how to implement form submission in the process of using laravel. It is very simple. It is recommended here for friends who are learning laravel

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>
Copy after login

Edit a route

Route::post(&#39;/submit&#39;,&#39;FormController@store&#39;);
Copy after login

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[&#39;a&#39;].PHP_EOL;
		echo $input[&#39;b&#39;].PHP_EOL;
		echo $input[&#39;c&#39;].PHP_EOL;
	}
}
Copy after login

The above is the detailed content of Detailed explanation of Laravel's form submission function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!