| |
if (Amateur Telescope Making)
{ |
| |
ATM() |
| |
} |
| |
else if(Star Party)
{ |
| |
STARS() |
| |
} |
| |
else if(About The Doctor)
{ |
| |
WhoIs() |
| |
} |
|
//Begin Program
//
//See who is looking at us
CALL DisassembleUser();
FUNCTION DisassembleUser()
{
//What web browser is hitting us
set $UsersBrowser=Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
//Where is the user coming from
set $UsersIPaddress=216.73.216.88
//What is there TCP port that they are connecting to us with
set $UserTCPport=20835
}
END FUNCTION
-->
|