Просмотр файла gallery/avators.php

Размер файла: 1.17Kb
  1. <?php
  2. #-----------------------------------------------------#
  3. # ********* WAP-MOTORS ********* #
  4. # Made by : VANTUZ #
  5. # E-mail : visavi.net@mail.ru #
  6. # Site : http://pizdec.ru #
  7. # WAP-Site : http://visavi.net #
  8. # ICQ : 36-44-66 #
  9. # Вы не имеете право вносить изменения в код скрипта #
  10. # для его дальнейшего распространения #
  11. #-----------------------------------------------------#
  12. require_once "../includes/start.php";
  13. require_once "../includes/functions.php";
  14.  
  15. if(isset($_GET['uz'])) {$uz = check($_GET['uz']); } else {$uz = "";}
  16.  
  17. if (preg_match('|^[a-z0-9\-]+$|i',$uz)){
  18. if (file_exists(DATADIR."dataavators/$uz.gif")){
  19. $filename = DATADIR."dataavators/$uz.gif";
  20. } else {
  21. $filename = BASEDIR."images/avators/noavatar.gif";
  22. }
  23. $filename = file_get_contents($filename);
  24. header('Content-Disposition: inline; filename="'.$uz.'.gif"');
  25. header("Content-type: image/gif");
  26. header("Content-Length: ".strlen($filename));
  27. echo $filename;
  28. }
  29. exit;
  30. ?>