नई पंक्ति वर्ण \n
ब्राउज़र में प्रदर्शित नहीं होगा। आपको उन्हें <br>
. में बदलने की जरूरत है एस। यह 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/ac296f35000833f6a092ae810a092a182a182
या आउटपुट विधि पर...
echo nl2br($row['book_text']);