$values = explode(PHP_EOL, $row);
foreach($values AS $data){
echo '<li>'.$data.'</li>';
}
You should normalize this data, it’s not the right way to store it.
0
solved PHP/MySQL adding
after every row
$values = explode(PHP_EOL, $row);
foreach($values AS $data){
echo '<li>'.$data.'</li>';
}
You should normalize this data, it’s not the right way to store it.
0
solved PHP/MySQL adding
after every row