Hello, we're having a spam problem where a user spams:
websitename.com
and we blocked that... but now they're spamming like:
w e b sit e.c !! om
w!e!B!s!i!t!e!. !c!o!m
etc....
so how can we select a field that has the following chars:
e i p x w r a x
? no matter how they're displayed.... even like --> epixwrax, e p i x w ! r a x
I tried:
but that doesn't work when they put in symbols like:
e#p!i x w@ar#x
can i select a value where it has ALL the chars listed... (epixwarx)
thanks :)
websitename.com
and we blocked that... but now they're spamming like:
w e b sit e.c !! om
w!e!B!s!i!t!e!. !c!o!m
etc....
so how can we select a field that has the following chars:
e i p x w r a x
? no matter how they're displayed.... even like --> epixwrax, e p i x w ! r a x
I tried:
Code:
SELECT * FROM `commentary` WHERE comment LIKE '%.%' '%c%' '%o%' 'm%' '%e' '%p%' '%i%' '%c%' '%w%' '%a%' '%r%' '%x%'
e#p!i x w@ar#x
can i select a value where it has ALL the chars listed... (epixwarx)
thanks :)
Comment