View Single Post
Old 08-23-2004, 06:29 AM   #3 (permalink)
Fallon
Junkie
 
Location: RI
Well, generally most of the clients I have encountered will take the ; and split it to multiple commands although, you're point about splitting something into two commands if there is a ; would be a handy-dandy thing to have for users who don't have a client that can handle that...
As it stands, I got a strchr function running on each string that is getting sent to the database and has a value that may contain characters. If the check returns a postive value, it sends a message to the user that part of their file contains an illegal character and that they've been reported to the staff and it sends a query to a database stating that said user has a string in their file that is questionable.

I am tempted though to create an array of banned words and search through the database, but I don't know if I really want to go through with that...
Fallon is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76