Просмотр файла vavok-1.5.3/gallery/count.php

Размер файла: 1.36Kb
  1. <?php
  2. // modified: 9.11.2011 2:40:09
  3. require_once"../include/startup.php";
  4.  
  5.  
  6. //
  7. $on_guests = "SELECT * FROM online WHERE user = 0";
  8. $on_guests = @mysql_query($on_guests) or die(mysql_error());
  9. $pcounter_guest = mysql_num_rows($on_guests);
  10. $on_total = "SELECT * FROM online";
  11. $on_total = @mysql_query($on_total) or die(mysql_error());
  12. $pcounter_online = mysql_num_rows($on_total);
  13. //
  14. $substr_count = $pcounter_guest;
  15. $counter_online = $pcounter_online;
  16. $counter_reg = $counter_online - $substr_count;
  17.  
  18. $count = file(BASEDIR . "used/datacounter/host.dat");
  19. $count = explode("#", $count[0]);
  20. $counter_host = $count[1];
  21. $counter_all = $count[2];
  22.  
  23. $hcount = file(BASEDIR . "used/datacounter/hits.dat");
  24. $hcount = explode("#", $hcount[0]);
  25. $counter_hits = $hcount[1];
  26. $counter_allhits = $hcount[2];
  27.  
  28. $img = @imageCreateFromGIF(BASEDIR . 'images/img/counter.gif');
  29. $color = imagecolorallocate($img, 169, 169, 169);
  30. $color2 = imagecolorallocate($img, 102, 102, 102);
  31.  
  32. if ($counter_online >= 0 && $counter_online < 10) $pos = 66;
  33. if ($counter_online >= 10 && $counter_online < 100) $pos = 58;
  34. if ($counter_online >= 100 && $counter_online < 1000) $pos = 48;
  35.  
  36. ImageString($img, 1, 4, 8, $counter_host, $color);
  37. ImageString($img, 1, 4, 15, $counter_hits, $color);
  38. ImageString($img, 6, $pos, 8, $counter_online, $color2);
  39.  
  40. Header("Content-type: image/gif");
  41. ImageGIF($img);
  42. ImageDestroy($img);
  43.  
  44. ?>