Answer the question
In order to leave comments, you need to log in
Error working with Form POST?
Hello, I am new to both php and laravel, especially for this and such a simple question.
What I gave below, I repeated specifically from the lessons on Laravel, and the author succeeded!
There is this form:
<form action="/about" method="POST">
Имя:
<input type="text" name="name"/><br />
Текст:<br />
<textarea name="text"></textarea>
<br />
<input type="submit" value="Äîáàâèòü"/>
</form>
Route::post('/about', function () {
echo "<pre>";
print_r($_POST);
echo "</pre>";
});
Route::match(['GET', 'POST'], '/about', function()
{
echo "<pre>";
print_r($_POST);
echo "</pre>";
});
Answer the question
In order to leave comments, you need to log in
<form action="/about" method="POST">
{{ csrf_field() }}
...
</form>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question