Quote:
Originally Posted by nor15
PHP код:
if(strlen(inputtext) <= 1 )
{
//Do Something
}
Put this under Your Register Dialog
|
Are you aware of what you're writing here ? this code just checks if the input text length is less or equal to 1, but the guy was asking how to check if the password length is bigger than 1 !
pawn Код:
if(strlen(inputtext) >= 1)
{
// Code
}
EDIT: Actually after reading ur post again, i got confused, do u want to check if the password length is bigger than 1 or if the password contains at leat 1 letter ?