Thread: Pie Chart
View Single Post
  #1  
Old 6th January 2011, 02:24
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default Pie Chart
Credits to r63 from TBDev

requirements: GD Graphics Library installed


torrent-details.php & find

Code:
print ("<B>" . LEECH . ": </b><img src=\"".$site_config["SITEURL"]."/images/leechers.gif\" border=\"0\"><font color=red>" . $row["leechers"] . "</font><BR>");


after add
Code:
if ($row["leechers"]+$row["seeders"] == 0) {
Code:
  $statistics = "Not available!";
  }
  else {
  $statistics = "<img src=stats.php?id=".$row["id"].">";
  }
find

Code:
print("<tr><td align=left><b>" . VIEWS . ":</b></td><td>" . $row["views"] . "</td></tr>\n");


add after

Code:
print("<tr><td align=left><b>Statistics:</b></td><td>$statistics</td></tr>\n");


or wherever you want to show. i have youtube added so mine is place below youtube

extract rar and place in backened
place stats.php into root
Attached Files
File Type: rar graph.rar (83.8 KB, 93 views)
File Type: php stats.php (1.1 KB, 58 views)
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote