Hey...
When I search my database I would like it to
make "a" and "o" count as any character.
With this I could search for example after
"Jorgen" and still get the result "Jörgen" (Swedish name with special character "ö") .
How do I do this with PHP, I took a look at the php-manual without understanding, please help me out
When I was programming ASP a while ago, I solved the problem by writing
teaminput = String(teaminput);
teaminput = teaminput.replace(/'/g,"");
teaminput = teaminput.replace(/[ao]/ig,"_");
teaminput = teaminput.replace(/*/g,"%");
... but how to do it in PHP?, that is the question