I have the following output from my database. How can I output the existing line breaks of the text??
while($row = mysql_fetch_array( $result )) {
// echo out the contents of each row into a table
echo "<tr>" ;
echo '<td>' . $row['id'] . '</td>';
echo '<td>' . $row['kategorie'] . '</td>';
echo '<td>' . $row['titel'] . '</td>';
echo '<td>' . $row['betroffen'] . '</td>';
echo '<td style="width:"600px">' . $row['beschreibung'] . '</td>';
echo '<td>' . $row['prioritaet'] . '</td>';
echo '<td>' . $row['status'] . '</td>';
echo '<td>' . $row['eingereicht'] . '</td>';
echo '<td>' . $row['umsetzung'] . '</td>';
echo '<td style="width:"400px">' . $row['kommentar'] . '</td>';
echo '<td>' . $row['entwickler'] . '</td>';
echo '<td><a href="edit.php?id=' . $row['id'] . '">bearbeiten</a></td>';
echo '<td><a href="delete.php?id=' . $row['id'] . '">löschen</a></td>';
echo "</tr>";
}
// close table>
echo "</table>";
nl2br()?