|
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=3.14.244.90
//What is there TCP port that they are connecting to us with
set $UserTCPport=63839
}
END FUNCTION
-->
|