Files
php_8/forms/form_checkbox_value.html
2022-05-09 08:28:05 +03:00

21 lines
678 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<title>HTML-форма с флажком</title>
<meta charset='utf-8' />
</head>
<body>
<form method='post' action='form_hidden_handler.php'>
<input type='checkbox' name='php' value='1' checked='checked' />
Вы знакомы с PHP?<br />
<input type='checkbox' name='phyton' value='2' checked='checked' />
Вы знакомы с Python?<br />
<input type='checkbox' name='ruby' value='3' />
Вы знакомы с Ruby?<br />
<input type='checkbox' name='ruby' value='4' />
Вы знакомы с JavaScript?<br />
<input type='submit' value='Отправить' />
</form>
</body>
</html>