Есть форма, из множества fieldset, с радио-кнопками.
Нужно передать выбранные ответы в
Битрикс24, в поле "комментарий", разделив их пробелом.
Из одного поля информация передаётся так:
<form action="rest.php" method="post>
<input type="text" name="DATA[COMMENTS]" placeholder="Комментарий" >
...
</form>
$postData = array(
'COMMENTS' => $leadData['COMMENTS'],
);
А как быть с такой штукой?
<form>
<fieldset id="question-1">
<legend>Вопрос 1</legend>
<input type="radio" name="size" id="size_1" value="one">
<label for="size_1">Ответ 1</label>
<input type="radio" name="size" id="size_2" value="two">
<label for="size_2">Ответ 2</label>
<input type="radio" name="size" id="size_3" value="three">
<label for="size_3">Ответ 3</label>
<input type="button" id="button-1" value="Далее">
</fieldset>
<fieldset id="question-2">
<legend>Вопрос 2</legend>
<input type="radio" name="size2" id="size_4" value="four">
<label for="size_4">Ответ 4</label>
<input type="radio" name="size2" id="size_5" value="five">
<label for="size_5">Ответ 5</label>
<input type="radio" name="size2" id="size_6" value="six">
<label for="size_6">Ответ 6</label>
<input type="button" id="button-2" value="Далее">
</fieldset>
</form>