Register Age
#4

It isn't that hard. You just have to close the end bracket of case DIALOG_GENDER before case DIALOG_AGE and not after it.

You have this:
PHP код:
case DIALOG_GENDER: {
    
// Code
    
case DIALOG_AGE: {
        
// Code
    
}

While it should be this:
PHP код:
case DIALOG_GENDER: {
    
// Code
}
case 
DIALOG_AGE: {
    
// Code

Reply


Messages In This Thread
Register Age - by MrCallum - 22.03.2016, 21:45
Re: Register Age - by AndySedeyn - 22.03.2016, 22:06
Re: Register Age - by MrCallum - 22.03.2016, 22:06
Re: Register Age - by AndySedeyn - 22.03.2016, 22:27

Forum Jump:


Users browsing this thread: 1 Guest(s)