add new line implode in table code example
Example: implode with br in php
$a1 = array('a1','a2','a3','a4');
$result=implode("<br/>\n",$a1)."<br/>";
echo $result;
/**
a1<br/>
a2<br/>
a3<br/>
a4<br/>
*/
$a1 = array('a1','a2','a3','a4');
$result=implode("<br/>\n",$a1)."<br/>";
echo $result;
/**
a1<br/>
a2<br/>
a3<br/>
a4<br/>
*/