hi
can you tell me why oxwall doesnt allow to register in arabic letter ??
and how to solve this problem ??
EDIT: For arabic letters: First declare a string containing all arabic letters so you'll have
$arabic='all_arabic_letters';Then your regexp string will be
$regex='['.$arabic .']{1,}([a-zA-Z0-9]{1,})\s{0,3}_{0,4}';And match it as follows:
preg_match($regex,$username);