Thx,
While I am trying this:
$n = eregi_replace("[?()+*=#$|{}\"\\\'\\\\\\\/]","",$n);
I noticed the followings:
These characters need to be escaped:
" ' \ /
While these I didn't escape them and my code works fine:
? ) ( + * = # $ | { }
These characters I didn't test them yet, but they seems not to be escaped:
_ - . , : ; ! @ % &
I don't know anything about these characters:
] [ ~ ` ^ < >
Is there is a rule or something??
thx