01.06.2017, 12:49
I had this problem, and my problem it was that i don't have isNumeric stock.
Put this in your GM, and see if it is work, if u had already change it with this:
Put this in your GM, and see if it is work, if u had already change it with this:
PHP код:
stock isNumeric( string[ ] )
{
for( new i = 0, j = strlen( string ); i < j; i ++ )
{
if( string[ i ] > '9' || string[ i ] < '0' )
return 0;
}
return 1;
}