My personal site got stuck in the world of spam bots. I need a way to limit my shoutbox to a certain number of characters.. The shoutbox is flatfile. I can post the code if it's needed,

My personal site got stuck in the world of spam bots. I need a way to limit my shoutbox to a certain number of characters.. The shoutbox is flatfile. I can post the code if it's needed,
Last edited by Colin-Roberts; 02-02-2009 at 10:01 PM.
.:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
.:.: Stand up for what is right, even if you stand alone:.:.
Well you'd want to set the maxlength attribute on your textarea and then you can if you want include javascript to display to the writer how many characters are left. Then an extra pre-caution could be to use strlen and check if it's the right length.
<textarea maxlength="50">
Limits the textbox to 50 characters - Also works on input fields.
PHP Code:substr( $variable, 0, 50 );
Want to hide these adverts? Register an account for free!