When you process the submitted form, you can always truncate the input.
$maxlength=$50;
$intext = substr($intext,0,$maxlength);
That will "brute-force" limit the size of any text.
Or, you could alternatively just check the length of the input and if it's too long, send the user back to the input form with a message explaining the problem.
Cheers,
Jack