How to use php to deduce data from a form, more precisely, from input=text
is a record, how can I get it out of there?
2 answers
<form method="post" action="Имя обработчика"> <input type="text" name="user" placeholder="Введите Ваше Имя" /> <input type="submit" value="Send" /> </form>
php - handler
<?php $user = htmlspecialchars($_POST["user"]); ... и так далее .................... ?>
|
There are several types of sending data: POST and GET
I advise you to read about it:
Or at least see:
|