View Single Post
  #1  
Old 30th November 2013, 20:26
hatijahat hatijahat is offline
Senior Member
 
Join Date: Dec 2012
Malaysia
Posts: 43
Default Donation progress bar
hello to all who read this.
i need a little help with this mod, it's seem working on the page but when i update account to test seem the bar not moving at all..
how to make it working..? what sql i have to add in my database?
i'm a noob in sql and all these coding thing.. hope get a guide from a pro in here..


the image :
Click the image to open in full size.

the code:
Code:
//====donation progress bar by snuggles enjoy
$total_funds = sql_query("SELECT sum(cash) as USD FROM funds");
$arr_funds = mysql_fetch_array($total_funds);
$funds_so_far = $arr_funds["total_funds"];
$totalneeded = "264";    //=== set this to your monthly wanted amount
$funds_difference = $totalneeded - $funds_so_far;
$Progress_so_far = number_format($funds_so_far / $totalneeded * 100, 1);
if($Progress_so_far >= 100)
$Progress_so_far = "100";
echo"<table width=140 height=20 border=2><tr><td bgcolor=white align=center valign=middle width=$Progress_so_far%>$Progress_so_far%</td><td bgcolor=grey align=center valign=middle</td></tr></table>";
//end
}
Reply With Quote