So I've created a post function, but when I want to display the post on the front page, it should only show the first 200 letters as well as keeping all breaks the user made in the textarea. What I am doing is the following:
substr($row["content"], 0, 200);
and this displays the content just fine, but it lets out all breaks that the user makes.
` was removed from the content?.. or were/are there `
` after the first 200 characters you want? – chris85 Sep 03 '16 at 17:03