• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How to make this line accept spaces.

DukeeH

Active Member
Joined
Dec 6, 2010
Messages
550
Solutions
3
Reaction score
39
Code:
if (!preg_match('/[^A-Za-z]/', $_POST['other_char'])) {
it isn't accepting spaces (it's a change name on website shop)
how to fix it?

nevermind.
if (!preg_match('/[^A-Za-z ]/', $_POST['other_char'])) {
 
Last edited:
Back
Top