--- a/displayCalendar.php +++ b/displayCalendar.php @@ -3,16 +3,38 @@ include_header("Months and Years"); -if ($_REQUEST['category']) { - echo "

".$_REQUEST['category']."

"; - $query = "SELECT CNID, description, value, agencyName, category, contractStart, supplierName - FROM `contractnotice` - WHERE childCN = 0 - AND category = '" . $_REQUEST['category'] . "' - ORDER BY value DESC"; - $result = mysql_query($query); - echo ""; - while ($row = mysql_fetch_array($result, MYSQL_BOTH)) { +if ($_REQUEST['month']) { + echo "

".$_REQUEST['month']."

"; +$monthParts = explode("-",$_REQUEST['month']); + $query = 'SELECT "CNID", "description", "value", "agencyName", "category", "contractStart", "supplierName" + FROM contractnotice + WHERE "childCN" = 0 + AND extract(year from "contractStart") = :year + AND extract(month from "contractStart") = :month + ORDER BY value DESC'; +$query = $conn->prepare($query); +$query->bindParam(":month", $monthParts[0]); + +$query->bindParam(":year", $monthParts[1]); + $query->execute(); + if (!$query) { + databaseError($conn->errorInfo()); + } + +MethodCountGraph($supplier); +CnCGraph($supplier); + + echo "
+ + + + + + + + + "; + foreach ($query->fetchAll() as $row) { setlocale(LC_MONETARY, 'en_US'); $value = number_format(doubleval($row['value']) , 2); echo (" @@ -30,22 +52,38 @@ split by year todo: Year/Month drilldown - largest contracts, agencies, suppliers +count per month big picture graphs?*/ -$query = "SELECT YEAR(contractStart), MONTH(contractStart), -value FROM `contractnotice` WHERE childCN = 0 GROUP BY MONTH(contractStart), YEAR(contractStart) ORDER BY YEAR(contractStart), MONTH(contractStart) "; +echo ''; +echo ''; -$result = mysql_query($query); -echo "
Contract Notice NumberContract DescriptionTotal Contract ValueAgencyContract Start DateSupplier
"; -while ($row = mysql_fetch_array($result, MYSQL_BOTH)) { + +$query = 'SELECT extract(year from "contractStart"), extract(month from "contractStart"), +SUM(value) as val, count(1) as count FROM contractnotice WHERE "childCN" = 0 GROUP BY extract(year from "contractStart"), extract(month from "contractStart") ORDER BY extract(year from "contractStart"), extract(month from "contractStart") '; +$query = $conn->prepare($query); + $query->execute(); + if (!$query) { + databaseError($conn->errorInfo()); + } + + echo "
+ + + + + + "; + foreach ($query->fetchAll() as $row) { setlocale(LC_MONETARY, 'en_US'); -$value = number_format(doubleval($row["value"]),2); +$value = number_format(doubleval($row["val"]),2); $month_name = date( 'F', mktime(0, 0, 0, $row[1]) ); - echo (""); + echo (""); } echo "
Month/YearTotal Contracts ValueNumber of Contracts
$month_name {$row[0]}\$$value
$month_name {$row[0]}\$$value({$row['count']} contracts)
"; mysql_free_result($result); } include_footer(); -?> +?> +