Hola, acervantes.
Esto te servirá:
Código PHP:
<html>
<head>
<script>
function maximo(obj,e) {
ma=200; //nº máximo de caracteres
tecla=(document.all)?e.keyCode:e.which;
if(obj.value.length==ma && tecla!=8)
return false;
}
</script>
</head>
<body>
<textarea onKeyDown="return maximo(this,event)"></textarea>
</body>
</html>
Saludos,