1 2 3 4 5 |
// This is for spam attacks that have random chars in the phone field $lwphone=strtolower($in_phone); if (strpbrk($lwphone,'abcdefghijklmnopqrstuvwxyz') !== false) { $spam='1'; } |
1 2 3 4 5 |
// This is for spam attacks that have random chars in the phone field $lwphone=strtolower($in_phone); if (strpbrk($lwphone,'abcdefghijklmnopqrstuvwxyz') !== false) { $spam='1'; } |