Jump to content

php loop help


ctcp

Recommended Posts

Im trying to get percents from my DB

 

<?php
$statisctis="SELECT  COUNT(user_id) FROM `liked` WHERE  ((DATE_SUB(CURDATE(),INTERVAL 1 DAY) <= date_liked) AND site_id='data->site_id')  ";
$datas = mysql_query($statisctis);
$sum_datas = mysql_result($datas, 0);

function Get_Percent($number,$total)
{
$percentage = round($number * 100 / $total);
echo $percentage;
}
// Usage
Get_Percent($sum_datas,$data->coins);
?>

 

i got the result for one day i whant get result for last 12 days how can i do that? or i need to write 12 querys?

 

 

Link to comment
https://forums.phpfreaks.com/topic/252140-php-loop-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.