preg_match("#^[aA-zZ0-9\-_]+$#",$fullName
the question is how to add Russian and Ukrainian characters here, because it turns out like: you can enter English letters, space, underscore, hyphen, and how to add other characters there.
And explain how you do it, a little is not clear.
And there is one question.
There is also a mail () function, so when I send a letter to Google Mail, it supposedly comes from, say, "X@gmail.com", and how to make the sender always specify the same email "Y@gmail.com".
Because google reports the following: "Perhaps this email was not sent from X@gmail.com. More ... Report Phishing."
[\w\d]+
. What is the alphabet it will understand. - PinkTux\d
is part of\w
. - Qwertiy ♦