Within a table I have the following structure:
<td>
<a href="#" data-toggle="popover" title="Dados" data-trigger="focus"
data-content=" <?php
echo $BlobParams[0].'<br>';
echo $BlobParams[1].'<br>';
echo $BlobParams[2].'<br>';
echo $BlobParams[3].'<br>';
echo $BlobParams[4].'<br>';
echo $BlobParams[5].'<br>';
echo $BlobParams[6];
?>">
Parametros
</a>
</td>
As% of data appears in an array , I would like one item to appear below the other. I tried to use data-content
in several ways, but it did not work. <br>
appears on the screen.