Pls i m using ad4earn scrip nd pls give me monthly statics code pls.
Pls i m using ad4earn scrip nd pls give me monthly statics code pls.
Collapse
X
-
daily stats code
PHP Code:<html>
<title>Today's Statistics</title>
<?php include "inc/def.php"; ?>
<?php include "inc/usrchk.php";
if($guest==1) {
header("location:index.php");
} ?>
<?php include "inc/header.php"; ?>
<div class="line">Today's Statistics</div>
<?php
$today = date("F j Y");
$getu = mysql_query("SELECT * FROM users WHERE user='$user'");
$getu1 = mysql_fetch_array($getu);
$id = $getu1['id'];
$bal = $getu1['bal'];
$pnt = $getu1['point'];
$getimp = mysql_query("SELECT * FROM imp WHERE uid='$id' AND time='$today'");
$imp = mysql_num_rows($getimp);
$getclk = mysql_query("SELECT * FROM clicks WHERE uid='$id' AND time='$today'");
$clk = mysql_num_rows($getclk);
print "<div class='lwt'>Today's Valid & Invalid Impressions : <font color=red>$imp</font></div>";
print "<div class='lgn'>Today's Valid & Invalid Clicks : <font color=red>$clk</font></div>";
?>
<?php include "inc/footer.php"; ?>
</html>
Comment