RE: RE:
You are viewing a single comment's thread from:

RE:

Words
45
Reading
1 min
Listen
Play
2y

copy/paste the data above and store into testfile.txt
Then run the script, and you should get the image back.
I will be creating a new account for a bot to record this every 15 minutes or so, and likely for other results in the state.

<?php

$myfile = fopen("testfile.txt", "r") or die("Unable to open file!");

$result = fread($myfile, filesize("testfile.txt"));

fclose($myfile);

$text=gzuncompress(base64_decode($result));

$myfile = fopen("testfile2.png", "w") or die("Unable to open file!");

fwrite($myfile, $text);

fclose($myfile);

?>

@firstamendment: copy/paste the | Ecency