Posted by finalwebsites.com on 03/02/06 10:30
jukka wrote:
>
> but that wont help against malicious personel who manually add Cc: and
> Bcc: headers, right? anyway, search and you will learn a great deal
> concerning security
Most of the time the spammers are machines they will never see your
form.
you need some additional script like
function strip_line_breaks($val) {
$val = preg_replace("/([\r\n])/", "", $val);
return $val;
}
and some regex validation is never wrong
Olaf
[Back to original message]
|