I'm having a bit of a headache (
The project I'm working on is a World of Warcraft "fansite" ( a new community site for guilds ), where users will be able to make lists of their characters, join and organize guilds, and more.
My head starts to hurt when I think about all the different character names that will pop up. As far as I can tell, everything that's prohibited for use in character names are special characters (!@'"\/& etc..), numbers and whitespace. After going through the crash course posted here, I thought that I had come up with the solution, by using:
Code: Select all
"\^[\W\d\s]$\"Can anyone tell me what I'm doing wrong, and give me a few pointers to get me back on track?