Guest User

Untitled

a guest
May 23rd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. // Tiny Skript to click do something with my stuff.
  3.  
  4. // Do something here
  5.  
  6. // Tiny Clicktracker
  7. if($_SERVER["HTTP_REFERER"]!=""){
  8. $file = fopen("counter.txt", "a+");
  9. fwrite($file, time()." | ".$_SERVER["HTTP_REFERER"]."\n");
  10. fclose($file);
  11. }
  12.  
  13. // Finally create and deliver image here
  14. header ("Content-type: image/png");
  15. $im = @ImageCreate (1, 1)
  16. or die ("Kann keinen neuen GD-Bild-Stream erzeugen");
  17. $background_color = ImageColorAllocate ($im, 255, 255, 255);
  18. $text_color = ImageColorAllocate ($im, 255, 255, 255);
  19. ImagePNG ($im);
Add Comment
Please, Sign In to add comment