Я использую приведенный ниже код, чтобы попросить пользователей оценить, какой язык программирования им удобнее.
Пользователи должны иметь рейтинг от 1 до 3 (1 — тот, с кем им удобнее всего)
<form id="form1" name="form1" method="post" action="">
<input type="number" name="php" required="required" max="3" min="1"/>PHP <br />
<input type="number" name="python" required="required" max="3" min="1"/>Python <br />
<input type="number" name="ruby" required="required" max="3" min="1"/>Ruby <br /><br />
<input type="submit" name="button" id="button" value="Submit" />
</form>
Как только пользователь определит приоритетность языков программирования и отправит хиты, как я могу на следующей странице повторить выбор рейтинга? (например, ваш первый выбор x, второй выбор y, а третий выбор z)
Я бы сделал это так (обратите внимание, что я изменил значение атрибутов name в элементах формы):
<form id="form1" name="form1" method="post" action="">
<input type="number" name="lang[php]" required="required" max="3" min="1"/>PHP <br />
<input type="number" name="lang[python]" required="required" max="3" min="1"/>Python <br />
<input type="number" name="lang[ruby]" required="required" max="3" min="1"/>Ruby <br /><br />
<input type="submit" name="button" id="button" value="Submit" />
</form>
И в php:
//Get the form results (which has been converted to an associative array) from the $_POST super global
$langs = $_POST['lang'];
//Sort the values by rank and keep the key associations.
asort($langs, SORT_NUMERIC );
//Loop over the array in rank order to print out the values.
foreach($langs as $lang => $rank)
{
//echo out here first, second, and third rank with each iteration respectively.
}
asort Функция просто сортирует массив по значению, сохраняя связь ключей.
Я не уверен, что тег input type = «number» существует.
ты делаешь лучше
<legend>
<label><input type="radio" name="php" value="1">1</label>
<label><input type="radio" name="php" value="2">2</label>
<label><input type="radio" name="php" value="3">3</label>
</legend>
<legend>
<label><input type="radio" name="python" value="1">1</label>
<label><input type="radio" name="python" value="2">2</label>
<label><input type="radio" name="python" value="3">3</label>
</legend>
Вы не должны использовать атрибут ‘required’ для тега радио или флажка
так что вы делаете функцию проверки javascript независимо от того, установлен флажок радио или нет.
<form name..... onsubmit = "return check_submit();">
<script>
var check_submit = function(){
if($("input[name=php]:checked").val() =="")
return false;
...
return true;
}
</script>
или вы можете использовать
<input type="text" name="php">
тогда на следующей странице вы можете сделать это
$php = intval(trim($_POST['php']));
$python = intval(trim($_POST['python']));
$msg = "your first choice for php is '.$php;
$msg.="your second choice for phthon is '.$python;
.....etc..