HTML5: Как указать, как данные формы должны быть закодированы перед отправкой на сервер?
Перейти на страницу упражнений
Решение:
HTML-код:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>How to specify how form-data should be encoded before sending it to a server</title>
</head>
<body>
<form action="/html-css-exercise/basic/solution/button-formenctype.php" method="post">
name: <input type="text" name="name"> email: <input type="email" name="email"> <button name="Submit" type="submit" formenctype="text/plain">Submit</button>
</form>
<!-- note that though enctype attribute is not explicitly mentioned in the form tag,
which takes default value "application/x-www-form-urlencoded", since formenctype="text/plain"
is explicitly specified in the button (of type="submit"), in the php associated PHP file
content/type of form data is shown as "text/plain"-->
</body>
</html>
Демонстрация в реальном времени:
Посмотрите на кнопку Pen -formenctype-answer от w3resource ( @ w3resource ) в CodePen .
Поддерживаемый браузер
да | да | да | да | да |
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code