Posts by Alessandro Melo • 21 points
1 post
-
2
votes1
answer128
viewsA: How to break table row with mysql data
You have to manipulate the string before printing it using some functions within a cycle <?php $str = "abc, xyz, 123"; for( $i = 0; $i < strlen($str); $i++){ $char = substr($str, $i, 1); if…