My guess would be that the $info array is saved to the $_SESSION array.
PS: All that extract() stuff looks pretty hazardous. Imagine a situation where you look for a value called 'username' in the $SESSION variable to see if the user has logged in. If the script is doing that by looking at the variable $username extracted from $SESSION, but a malicious user sends a query string variable or a cookie named 'username' with some reasonable value, it would overwrite the variable extracted from $_SESSION, and voilĂ , he's now logged in. And even if no one is trying to hack the site, all those extracts could still potentially have one inadvertently overwrite another one, or clash with any other variables you use without initializing them after the extracts.