Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,154,956 members, 7,824,999 topics. Date: Saturday, 11 May 2024 at 11:02 PM

PHP: How Do I Add Paragraph When I Make A Post Through Text Field - Webmasters - Nairaland

Nairaland Forum / Science/Technology / Webmasters / PHP: How Do I Add Paragraph When I Make A Post Through Text Field (402 Views)

How Do I Add The Google Adsense Code To My Website? / How Do I Add "Like Me On Facebook" On My Blog? / How Can I Add Debit/credit Card Payment On My Site (2) (3) (4)

(1) (Reply)

PHP: How Do I Add Paragraph When I Make A Post Through Text Field by Raylight2(m): 5:45pm On Jun 16, 2016
Please, I am currently developing a website. when I include a paragraph (white space) between two sentences and send to the database, it's ignored when selected from the database back to the browser. please, what should I do?

looking forward to hear from you please.
Re: PHP: How Do I Add Paragraph When I Make A Post Through Text Field by ukorsimplicity(m): 7:38pm On Jun 16, 2016
What you need is a WYSIWYG editors... you can checkout tinyMCE or textboxio ..

If TEXT EDITORS are overkill for your project, you can use the php nl2br() function ( http://php.net/nl2br ). like this


<?php

echo nl2br($_POST['textarea']);

?>

or you can use this code i borrowed from stack Over Flow ( http://stackoverflow.com/questions/4523961/paragraphs-in-textarea )


<?php

$textarea = $_POST['textarea'];

$newarr = explode("\n",$textarea);

foreach($newarr as $str) {

echo "<p>".$str."</p>";

}
?>

Happy coding...
Re: PHP: How Do I Add Paragraph When I Make A Post Through Text Field by Raylight2(m): 10:36pm On Jun 16, 2016
Thanks so much bro. I'll try it out.

(1) (Reply)

How To Choose The Perfect Wordpress Theme For Your Website / How To Make Huge Profits From Domain Business / Sign Up And Test Hiipeeps.com Social Network

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 7
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.