I’ve tried this: count new lines in textarea to resize container in PHP?
But it doesn’t seems to be working:
$content = nl2br($_POST['text']);
preg_match_all("/(<br>)/", $content, $matches);
echo count($matches[0]) + 1;
It’ll always output 1.
Is there any other solutions to count lines in a string?
Found this in one of my old apps… Not sure where I got it from.
*Edit – Actually, this probably won’t work if your textarea is spitting out html.. check for
<br> and <br/>