Ok im busy coding myself a website and part of it is a comment system. Now what I dont want is comment with a lot of enters: But I do need the ability to post an enter. I want to limit the ammount to 2 enters (<br>'s) But something like this should be allowed: But not Is there a way ????
You can do something like: preg_replace("/<br><br>([<br>]*)/","<br><br>", but it's not going to work well since people can easily add a space to a line which will make it look blank.