Ký tự dòng mới \n
sẽ không hiển thị trong trình duyệt. Bạn cần chuyển đổi chúng thành <br>
S. Điều này có thể được thực hiện bằng cách sử dụng nl2br
trên chèn dữ liệu hoặc trên đầu ra. Ví dụ:
$query = $db->prepare("
INSERT INTO `books` (`book_name`, `book_text`, `book_genre`, `book_cover`) VALUES (:name, :text, :genre, :fulldir)");
$query->bindParam(':name', $book_name);
$query->bindParam(':text', nl2br($book_text));
$query->bindParam(':genre', $book_genre);
$query->bindParam(':fulldir', $fulldir);
$query->execute();
Demo: http://sandbox.onlinephpfunctions.com/code/ac2f35000833f6c91e2d96
hoặc trên phương thức đầu ra ...
echo nl2br($row['book_text']);