Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

text.part.php 805B

12345678910111213141516
  1. <?php $row_id = $this->view->survey_tag.'_row_'.$index; ?>
  2. <div class="form-group col-lg-12" id="<?php echo $row_id; ?>">
  3. <label class="label-main-question"><?php echo htmlspecialchars($item['question']); ?></label>
  4. <input type="hidden" name="data[<?php echo $index; ?>][group]" value="<?php echo $item['group']; ?>">
  5. <input type="hidden" name="data[<?php echo $index; ?>][question_type]" value="text">
  6. <input type="hidden" name="data[<?php echo $index; ?>][question]" value="<?php echo htmlspecialchars($item['question']); ?>">
  7. <?php if(isset($item['rows']) && (int)$item['rows']>1): ?>
  8. <textarea class="form-control" name="data[<?php echo $index; ?>][answer]" rows="<?php echo $item['rows']; ?>"></textarea>
  9. <?php else: ?>
  10. <input type="" value="" name="" id="">
  11. <?php endif; ?>
  12. </div>