That's just it, either messenger or not, the method is the same, the only way to get what you are after is to hope Yahoo uses a plain HTML log in script, which they do not. That message you are seeing is displayed by PHP. Which runs on the server, not the browser.
it would be something like:
PHP Code:
if {$user is logged {
display $login;
}
else{ display $notlogged;
}
}
Obviously this is not a working script...
The idea is that you would need to have access to the php files that tell the script what the variable are, and copy those, THEN be able to access the SQL database and run the same check their script does (the if user is logged part)
So basically, according to the browser "that text" is always displayed, just exactly what that text says changes.
Does that make sense?
Bookmarks