I want to strip a string from all characters, except for: Alphanumeric characters, spaces and accented letters.
I got it to work for everything except for the accented letters:
$fname = preg_replace("/[^\w\space/", "", $fname);
What do I need to change in order to allow accented letters in the output?