Hi,
I have saved a text including wordwraps in a MySQL database. PHPMyAdmin shows the text correctly saved in my table. Now I want to read out the text with PHP and display it INCLUDING the wordwraps. This doesn't function, the text is displayed in one line.
This is the code:
$sqlab = "select * from ABIGB Order by 'ID' desc";
$res = mysql_db_query($database, $sqlab);
$kommentar = mysql_result($res, $i, "Kommentar");