改行文字\n
ブラウザに表示されません。それらを<br>
に変換する必要があります s。これは、nl2br
を使用して実行できます。 データ挿入または出力のいずれか。例:
$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();
デモ: http://sandbox.onlinephpfunctions.com/code/ac2f35000833f6c91e2d96bf10a09b
または出力メソッドで...
echo nl2br($row['book_text']);