12.12.2017, 00:40
Quote:
|
I already tried several ways but it does not work, it always goes to the next dialog.
PHP код:
|
PHP код:
if(strlen(inputtext) < 0 && strlen(inputtext) > 2 && IsNumeric(inputtext))
you used a case that will NEVER happen wtf is that man ? change that to:
PHP код:
if(strlen(inputtext) > 2 && IsNumeric(inputtext))


