Home  >  Article  >  Backend Development  >  Detailed explanation of Laravel's form submission function

Detailed explanation of Laravel's form submission function

巴扎黑
巴扎黑Original
2018-05-11 15:47:162790browse

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>

Edit a route

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

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;
	}
}

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!

Statement:
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
Previous article:phpmyadmin usage tutorialNext article:phpmyadmin usage tutorial