why the server is not accepting the whole birthdate deletion? if you put 8 digit character it will say You entered birthday does not match.for example. my birthday is YYYYMMDD. it will not accept the correct birthdate. but if you put only 6digits character. you can deleted you character. YYMMDD it will accept your input birthday.
// construct "YY-MM-DD"
birthdate[0] = RFIFOB(fd,6); //year
birthdate[1] = RFIFOB(fd,7); //year
birthdate[2] = '-';
birthdate[3] = RFIFOB(fd,8); //month
birthdate[4] = RFIFOB(fd,9); //month
birthdate[5] = '-';
birthdate[6] = RFIFOB(fd,10); //date
birthdate[7] = RFIFOB(fd,11); //date
birthdate[8] = 0;
is there any lift the limit of 6 characters into 8?