PHP Security Guide: Form Processing
http://phpsec.org/projects/guide/2.html
WordPress Answers
Freakin love this site: http://wordpress.stackexchange.com/
JS Ellipsis?
1 2 3 4 5 6 7 | var p=$('#fos p'); var divh=$('#fos').height(); while ($(p).outerHeight() > divh) { $(p).text(function (index, text) { return text.replace(/\W*\s(\S)*$/, '...'); }); } |