Hello
I am not sure that this is even possible, but then again I am not an expert in the php-arena :-)
I have this piece of code that shows the top 100 sponsors:
$rs=mysql_query("select * from topref order by ref desc limit 0,100");
while($arr=mysql_fetch_array($rs)) {
$rs1=mysql_query("select * from users where Username='$arr[0]'");
$arr1=mysql_fetch_array($rs1);
echo "<br> User:$arr[0] have $arr[1] Referrals";
Is it possible to show the results for "last week" and "current week"
The members have a signup date located in the "users" table..
Let me know if you need more info :-)
Regards,
Casper