|
Posted by The Natural Philosopher on 09/20/07 19:05
pinoyclan@gmail.com wrote:
> <?php
> header("Location: http://www.friendster.com/index.cfm?fuseaction=user");
> $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;
> ?>
>
> this link of the code is here,
> http://www.nomorepasting.com/getpaste.php?pasteid=4068
>
> pls tell me what this means and the
> function of this .php file. thank you
>
Its simply dumping out the contents of the GET variables to a file.
[Back to original message]
|