2
I need to bring the list of people inside a textarea
or some similar alternative.
I’m bringing it this way:
<textarea rows="5" name="pergunta4">
<?php foreach($avaliadores as $avaliador):?>
<?php echo($avaliador['nome']);?>
<?php endforeach; ?>
</textarea>
But the names of the evaluators always come next to each other or in random spaces.
Try:
<?php echo($avaliador['nome']).'<br>';?>
– rbz