29.09.2016, 14:38 
	
	
	
		Uh, I really don't know why this doesn't work.
I tried to make a clan with the name of [STAFF] also tried [ADMIN] and [AD] neither of those work because I have something to protect the sql, but it doesn't allow the following letters I think 'A, D, S'.
Here is the code:
And:
It says that I am not allowed to use those characters, letters.
	
	
	
	
I tried to make a clan with the name of [STAFF] also tried [ADMIN] and [AD] neither of those work because I have something to protect the sql, but it doesn't allow the following letters I think 'A, D, S'.
Here is the code:
Код:
static const antisqlinjection[][] =
{
    "'",
    "#",
    "`",
     "%s",
     "%d",
     "%f"
};
Код:
for(new i; i < sizeof(antisqlinjection); i++)
	    {
			if(strfind(inputtext, antisqlinjection[i], true) != -1)
			{
				SCM(playerid, -1, "Nu sunt permise asemenea caractere.");
				return 1;
		   	}
	   	}
Код:
SCM(playerid, -1, "Nu sunt permise asemenea caractere.");




