Geturl to Textfile

That is some of the available data:

Array
(
     [sim_name] => Infolit iSchool
     [sim_x] => 1122
     [sim_y] => 1140
     [sim_rc] => Teleport finished
     [sim_ip] => 216.82.23.12:13000
     [sim_lluuid] => 0aeab345-d831-8c51-53d3-d2227c14696a
     [sim_billable] => 0
     [sim_owner_lluuid] => ea628313-c9f7-4e43-b486-7ec0717c2571
     [sim_owner_name] => Sheila Yoshikawa
     [sim_version] => Second Life Server 1.25.5.109327
     [sim_access] => PG
     [sim_waterheight] => 20
     [sim_avatars] => 0
     [sim_bot_position] => <191, 150, 51.05>
     [bot_name] => DebugMe Melody
)

And you can write the data you need to a textfile:

<?php

if ($_GET[sim_name] != "")
{
        $fd=fopen("log.txt", a);
        fwrite($fd, $_GET[sim_name] . "\t" . $_GET[sim_ip] . "\n");
        fclose($fd);
}

?>