Ah - I see where the problem is now. The variable "scared" is never initialized before it is used. So the behavior of your application will be very erratic.Quote:
Originally posted by hometown
I am scared ???
PHP Code:bool scared;
if(scared)
leave();
else
stay();
