Thanks Vincent for your insight. I forgot about the carriage return (backslash r) that precedes the next line (backslash n). T
That was the key...they come in pairs.
Here is the code that solved the problem.
$stringtest = ereg_replace("((\r\n){3,})", "\n\n", $stringtest);
replace newline to <br>
$stringtest = ereg_replace("\n", "<br>", $stringtest);
3 or more pairs of carriage returns and newlines constitutes a double carriage return.
This is needed in order to filter the information prior to going to the MYSQL database...fresh off of the form.
Thanks again Vincent...hope this helps someone in the future.