$top_menu = "commu";
$grey_box = "Community > Site Stats > Recruit Analysis";
$green_box_img = "icon_community.gif";
$green_box = "Site Stats";
include "../include/header.php";
$avg_list_qry = "SELECT COUNT(*) FROM j_auct_master GROUP BY MONTH(reg_date), YEAR(reg_date)";
$avg_list_res = mysqli_query($avg_list_qry,$connect);
$avg_list_tot = mysqli_num_rows($avg_list_res);
$list_sum = "";
for($vm=0;$vm<$avg_list_tot;$vm++) {
$avg_list_row = mysqli_fetch_array($avg_list_res);
$list_sum = $list_sum + $avg_list_row[0];
}
$avg_list = $list_sum / $avg_list_tot;
$avg_list = round($avg_list);
?>
include("head_href.php"); ?>
| |
|
|
| |
| |
| |
|
| |
| 1. Average Job Listing per Month |
|
|
|
| |
|
|
|
|
 |
|
|
include "../include/footer.php";
?>