2
How to make line breaks inside a bootstrap Popover
Example
echo"<a href=\"#\" data-toggle='popover' data-title='Popover on Left' data-content='$data <br> $data' data-placement='left'> <span class=\"label label-success\">Print / Send</span></a>";
//Aqui em data-content='$data <br> $data'
//queria fazer a quebra em linhas mais quando imprimi sai a tag <br> e não quebra
Fabio, have you tried n ? Another thing that can work is to save both
$data
in another variable, for example,$datas = $data."
".$data;
// Space being a New Line– Thiago Santos