Mr Chris Posted February 12, 2008 Share Posted February 12, 2008 Hi Guys, Say In mysql database I have a field named details which holds all the paragraphs of a story: and these details are not held in the database as html, but there is a line gap inbetween the paragraph breaks. How can I output the first two paragraphs of this text, while also making the first paragraph outputted bold? Thank You Chris Quote Link to comment https://forums.phpfreaks.com/topic/90727-outputting-two-paragraphs/ Share on other sites More sharing options...
wildteen88 Posted February 12, 2008 Share Posted February 12, 2008 example: <?php // example data $details = 'Paragraph1, paragraph1 paragraph1. Paragraph2, paragraph2 paragraph2.'; // standardise new lines $details = str_replace(array("\r\n", "\r", "\n"), "\n", $details); // seperate paragraphs // $para1 <- paragraph1 // $para2 <- paragraph2 list($para1, $para2) = explode("\n\n", $details); // display formated paragraphs echo '<p><b>' . $para1 . '</b></p><p>' . $para2 . '</p>'; ?> Quote Link to comment https://forums.phpfreaks.com/topic/90727-outputting-two-paragraphs/#findComment-465119 Share on other sites More sharing options...
Mr Chris Posted February 12, 2008 Author Share Posted February 12, 2008 thanks! Quote Link to comment https://forums.phpfreaks.com/topic/90727-outputting-two-paragraphs/#findComment-465206 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.