Proper Paragraphs
21
Proper Paragraphs
function paragraphs($text) {
$fulltext = '';
$text_array = explode("\n\n", $text);
foreach($text_array AS $ta) {
$ta = str_replace("\n", "<br />", $ta);
$fulltext =. "<p>" . $ta . "</p>";
}
return $fulltext;
}
$fulltext = '';
$text_array = explode("\n\n", $text);
foreach($text_array AS $ta) {
$ta = str_replace("\n", "<br />", $ta);
$fulltext =. "<p>" . $ta . "</p>";
}
return $fulltext;
}






There are currently no comments for this snippet.